cnpm在ubuntu19.10下面的安装以及vue.js中el的意思
程序员文章站
2022-06-05 21:02:22
...
#apt install nodejs npm
#npm config set registry https://registry.npm.taobao.org
#npm install -g cnpm --registry=https://registry.npm.taobao.org
菜鸟教程中有:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue 测试实例 - 菜鸟教程(runoob.com)</title>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<p>{{ message }}</p>
</div>
<script>
new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!'
}
})
</script>
</body>
</html>
这个el其实就是element的缩写,
用来定位上方的名为app的id的。
上一篇: cmake工具在linux平台下面的使用
下一篇: 判断网络的工具类