vue3.0cli+ts是傻瓜式框架,创建项目简单,但在具体操作中遇到的坑,使用分模块store在引入的时候遇到引入state失败的情况;初始没找到方法;使用
@State(state => dataMsg) dataMsg: any
直接引入失败,后来使用对象的引入方法才成功如下
@State(state => state.header.dataMsg) dataMsg: any
@State(state => state.header.heaFlag) heaFlag: any
@State(state => state.home.title) title: any
未使用过2.0cli+ts,直接上手的3.0cli+ts