摘要:
vue3中,实现数据驱动,在写法上有了改变 <template> <div style="cursor:pointer;" @click="changeWord">{{world}}</div> </template> <script> import { reactive, toRefs } fro 阅读全文
摘要:
1、弃用钩子“beforeDestroy”、“destroyed”ESlint检查 2、钩子的变化 <template> <div> </div> </template> <script> export default { setup() { console.log('setup'); }, bef 阅读全文
摘要:
1、创建命令的变化 用vue3命令创建xx项目:vue create "xx" 注:vue3在创建项目时,只能使用小写字母,以及亲和url的字符,否则将会报错 vue create m+ 创建项目时报错:Error: name can only contain URL-friendly charac 阅读全文