vuejs-hello vuejs
2016-01-29 本文已影响716人
webCoder
这篇文章学习一下如何使用vuejs在页面输出最简单的hello vuejs
为了页面好看,我在项目中引入了bootstrap相关的文件和fonts字体
项目结构如下:
vuejs静态项目目录结构.png
页面结构:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>demo01</title>
<link rel="stylesheet" href="../css/base/bootstrap.min.css">
<link rel="stylesheet" href="../css/base/common.css">
</head>
<body>
<div class="container mt10">
<h1 id="title">{{ message }}</h1>
</div>
<script src="../js/base/vue.js"></script>
<script src="../js/base/jquery.min.js"></script>
<script src="../js/base/bootstrap.min.js"></script>
<script>
new Vue({
el: '#title',
data: {
message: 'Hello Vue.js.'
}
});
</script>
</body>
</html>
在浏览器中打开这个网页,就可以看到下面的结果:
result.png