index嵌入vue.js, 包括了vue.js的下载地址
vue.js的下载和引用地址
https://blog.csdn.net/LlanyW/article/details/125199856
https://v2.vuejs.org/v2/guide/installation.html
vue.js如果下载到本地, 则无法使用devtool
在这里插入代码片
i
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<!-- <script src="vue.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.16/dist/vue.js"></script>
</head>
<body>
<div id="app"><ul><li v-for="todo in todos">{{ todo.text }}</li></ul>
</div>
<script>new Vue({el: '#app',data: {todos: [{ text: 'Learn JavaScript' },{ text: 'Learn Vue.js' },{ text: 'Build Something Awesome' }]}
})
</script>
</body>
</html>