码迷,mamicode.com
首页 > Web开发 > 详细

第一个vue.js的例子

时间:2017-07-10 00:36:03      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:first   body   html   head   tps   例子   note   运行   new   

1.使用notepad建立一个网页文件demo.html,

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue first demo</title>
<script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div id="app">
    <div v-html="message"></div>
</div>
    
<script>
new Vue({
  el: ‘#app‘,
  data: {
    message: ‘<h1>hello world!</h1>‘
  }
})
</script>
</body>
</html>

2.运行结果如下:

hello world!

 

第一个vue.js的例子

标签:first   body   html   head   tps   例子   note   运行   new   

原文地址:http://www.cnblogs.com/Cpart/p/7143710.html

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