讲师回答 / Brian
楼上正解,3.0的语法已经发生了变化。不能new vue了,需要使用createApp:https://v3.vuejs.org/guide/introduction.html#declarative-rendering
2020-06-26
最新回答 / wieeee
<template> <div class="wrapper"> <div class="title">{{obj.title}}</div> <div class="content"> {{obj.content}} </div> <div class="back" @click="back()">返回</div> </div></template>...
2020-05-10
最赞回答 / 慕妹219649
正确获取方法(使用分支:v5.1.1)1.克隆1git clone -b v5.1.1 https://github.com/vuejs/vue-devtools.git2.安装依赖1cd vue-devtools 后输入 cnpm install3.构建1完成后继续输入 npm run build4.chrome中找到 更多工具 / 扩展程序 选项,勾选 开发者模式,然后点击 加载已解压的扩展程序,选择vue-devtools\shells\chrome,确认亲测有效!!!
2020-05-05