|
1234567891011121314151617181920212223 |
- <script>
- export default {
- onShow() {
-
-
- plus.runtime.quit = () => {
-
- };
-
-
- let data = uni.getStorageSync(`Default_Vuex_Storage`);
- console.log("data", data);
- if (data) {
- this.$store.commit('setAll', JSON.parse(data));
- }
- },
- }
- </script>
-
- <style lang="scss">
-
- @import "uview-ui/index.scss";
- </style>
|