摘要: store.js文件内部写法: import vue from 'vue'; // 创建公共数据store export const store = vue.observable({ count: 0 }); // 创建更改状态的方法,创建后在组件内直接使用,也可不使用,在组建内直接书写 expor 阅读全文
posted @ 2020-04-22 17:50 Alex-Song 阅读(495) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <button @click="handle">添加属性</button> <div ref="div">{{change}}</div> </div> </template> <script> export default { name: "Mine", data 阅读全文
posted @ 2020-04-22 16:12 Alex-Song 阅读(378) 评论(0) 推荐(0) 编辑