1. 程式人生 > >vue簡單使用demo

vue簡單使用demo

sage style ESS func see 查看信息 src 初始 tle

<html>
<head>
    <title>vue</title>
    <!-- 生產環境版本,優化了尺寸和速度 -->
    <script src="https://cdn.jsdelivr.net/npm/vue"></script>
</head>
<body>
<div id="app">
    <div>name={{name}}</div>
    <div v-bind:title=‘message‘>鼠標懸停查看信息</div>
    <div v-if
=‘seen‘>v-if使用</div> <div> v-for使用 <ul> <li v-for=‘(value, index) in items‘ v-on:click=‘choose(index)‘>{{index}}-{{value}}</li> </ul> </div> <div v-on:click=‘click‘>點擊</div> <div> v-model
<div>{{model}}</div> <input v-model=‘model‘/> </div> </div> <script type="text/javascript"> // 開啟開發調試 Vue.config.devtools = true // 數據 var data = { name: ‘lay‘, message: ‘頁面加載於‘ + new Date().toLocaleString(), seen: true, items: [1,2,3,4,5], model:
‘model-content‘ } var methods = { click: function(){ alert(‘clicked‘) }, choose: function(index){ console.log(this.items[index]) } } // 初始化模塊 var vm = new Vue({ el: ‘#app‘, data: data, methods: methods }) </script> </body> </html>

vue簡單使用demo