引入vuex

main
CTP 2 years ago
parent f7ef0675c8
commit 5de5bdfb26

@ -1,12 +1,14 @@
import Vue from 'vue' import Vue from 'vue';
import App from './App' import App from './App';
import './uni.promisify.adaptor' 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({ const app = new Vue({
...App store, //引入vuex
}) ...App,
app.$mount() });
app.$mount();

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

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