08 2024 档案
摘要:Vue.use(Vuex) const store = new Vuex.Store({ state: { "theme": "theme-red", }, mutations: { setTheme(state, theme) { state.theme = theme }, }, actions
阅读全文
摘要:props:{ value:Number,},model:{ prop: 'value', // 指定 v-model 要绑定的参数叫什么名字,来自于 props 中定义的参数 event: 'change', // 指定要触发的事件名字,将被用于 $emit},computed: { inputD
阅读全文