摘要: 前面介绍的vue的组件书写中,必须要在data,methons,或者computed等模块中写上对应的内容,vue3提供了一种更加自由的写法,不用非得定义这些各个模块并只能将需要的内容写入固定的模块中,这种写法叫组合API。 如下Home.vue: <template> <div class="ho 阅读全文
posted @ 2021-07-03 12:23 maycpou 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 如果项目很大再store的index.js里面可能就有很多的内容,不便于管理,vuex支持在主模块下面创建子模块: store/index.js: import { createStore } from 'vuex' //新建一个子模块,也可以将这个子模块写在外面的一个js文件中,这里引入 cons 阅读全文
posted @ 2021-07-03 11:57 maycpou 阅读(844) 评论(0) 推荐(0) 编辑