VUE入门一
Posted xuyxbiubiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE入门一相关的知识,希望对你有一定的参考价值。
学习VUE中.......
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Hello World</title> <script src="./vue.js"></script> </head> <body> <div id="app">{{content}}</div> <script> // var dom = document.getElementById(‘app‘); // dom.innerHTML = ‘hello world‘ var app = new Vue({ el:‘#app‘,//实例负责管理的区域 data:{ content:‘hello world1‘ } }) setTimeout(function () { app.$data.content = ‘bye world‘ //$data 是data 的别名 隔2秒换数据 },2000) </script> </body> </html>
以上是关于VUE入门一的主要内容,如果未能解决你的问题,请参考以下文章