引入vuex

main
CTP 2 years ago
parent f7ef0675c8
commit 5de5bdfb26

@ -1,12 +1,14 @@
import Vue from 'vue'
import App from './App'
import './uni.promisify.adaptor'
import Vue from 'vue';
import App from './App';
import './uni.promisify.adaptor';
import store from './store';
Vue.config.productionTip = false
Vue.config.productionTip = false;
App.mpType = 'app'
App.mpType = 'app';
const app = new Vue({
...App
})
app.$mount()
store, //引入vuex
...App,
});
app.$mount();

@ -50,6 +50,7 @@ export default {
};
},
methods: {},
onLoad() {},
};
</script>
<style scoped lang="scss">

@ -1,8 +1,7 @@
<template>
<!-- UDI校验码 -->
<view>
<!-- 搜索输入框 -->
<!-- UDI校验码 -->
<view class="box">
<!-- 搜索输入框 -->
<view class="header">
<input
focus

@ -0,0 +1,12 @@
// 页面路径store/index.js
import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex); //vue的插件机制
//Vuex.Store 构造器选项
const store = new Vuex.Store({
state: {},
getters: {},
modules: {},
});
export default store;
Loading…
Cancel
Save