码迷,mamicode.com
首页 > 其他好文 > 详细

vue2.x入门学习

时间:2020-03-29 10:38:41      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:npm   node   static   版本   vue2   ret   type   class   入门学习   

vue安装

# 最新稳定版本
$ npm install vue

# 最新稳定 CSP 兼容版本
$ npm install vue@csp

 

引包

 

cd /d/vue/demo

cnpm install vue@csp

$ ll node_modules/vue/dist/

total 1509

-rw-r--r-- 1 tanpengfei3 1049089    279  4月 27  2016 README.md

-rw-r--r-- 1 tanpengfei3 1049089 403335  9月 28  2016 vue.common.js

-rw-r--r-- 1 tanpengfei3 1049089 402783  9月 28  2016 vue.js

-rw-r--r-- 1 tanpengfei3 1049089 131766  9月 28  2016 vue.min.js

-rw-r--r-- 1 tanpengfei3 1049089 594279  9月 28  2016 vue.min.js.map

 

vue.min.js 压缩删减版

vue.js 完整版本

 

mkdir a01_v_newvue

mkdir -p static/js

cp ../node_modules/vue/dist/vue.js static/js/

index.html

<!DOCTYPE html>
<html>
<head>
    <title>引包,el,模板,data, 插值</title>
</head>
<body>
<div id="app"></div>

<script type="text/javascript" src="static/js/vue.js"></script>
<script type="text/javascript">

new Vue({
    el:"#app",
    template:`
    <div>模板显示:{{msg}}</div>
    `,
    data:function(){
        return {
            msg: 数据
        }
    }
});

</script>

</body>
</html>

页面显示

模板显示:数据

注意事项:vue 与 Vue 是不同的

 

vue2.x入门学习

标签:npm   node   static   版本   vue2   ret   type   class   入门学习   

原文地址:https://www.cnblogs.com/perfei/p/12590997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!