08 2024 档案

摘要:Vue.use(Vuex) const store = new Vuex.Store({ state: { "theme": "theme-red", }, mutations: { setTheme(state, theme) { state.theme = theme }, }, actions 阅读全文
posted @ 2024-08-21 16:44 羽鱼 阅读(24) 评论(0) 推荐(0) 编辑
摘要:props:{ value:Number,},model:{ prop: 'value', // 指定 v-model 要绑定的参数叫什么名字,来自于 props 中定义的参数 event: 'change', // 指定要触发的事件名字,将被用于 $emit},computed: { inputD 阅读全文
posted @ 2024-08-16 16:18 羽鱼 阅读(31) 评论(0) 推荐(0) 编辑