https://chrome.zzzmh.cn/index
安装后需要关闭所有浏览器并重启
再次打开检查会看到vue标签,方便调试修改
如果安装后找不到vue标签,请尝试下载历史版本,这里用的是6.4.5
<!doctype html>
<html lang="en">
<head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title>
</head><body>
<div id="app">{{msg}}{{count}}
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
<script>const app = new Vue({el: '#app',data: {msg: 'tony',count: 666}})
</script>
</body>
</html>
预览图