欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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的。

相关标签: 前端技能