1. 程式人生 > >Vue-入門

Vue-入門

sse scale dev 版本 技術 lan ssa char view

一.Vue 目錄結構

  1.assets: 放置css、js、img等文件夾

  2.package.json:項目配置文件

  3.index.html:首頁入口文件

  4.example:html文件(例子)

  技術分享

二.下載Vue 2.0版本

  官方網站:http://vuejs.org/

    開發版本:包含完整的警告和調試模式

    生產版本:刪除了警告,進行了壓縮

三.編寫代碼

index.html文件

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>vue.js實例</title>
</head>
<body>
	<h1>vue2.0實例</h1>
	<hr>
	<h2>第一季,內部指令</h2>
	<ol>
		<li><a href="/example/helloworld.html">hello world實例</a>
	</ol>
</body>
</html>

helloworld.html文件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <title>helloworld</title>
    <script type="text/javascript" src="../assets/js/vue.js"></script>
</head>
<body>
    <h1>hello world</h1>
    <hr>
    <div id="app">
        {{message}}
    </div>
    <script type="text/javascript">
        var app = new Vue({
            el:‘#app‘,
            data:{
                message:‘hello world‘
            }
        })
    </script>
</body>
</html>

  

Vue-入門