标签: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.运行结果如下:
标签:first body html head tps 例子 note 运行 new
原文地址:http://www.cnblogs.com/Cpart/p/7143710.html