我是Vue.js的新手,我有一个标题html,它没有Vue.js的cdn链接。
<nav class="navbar navbar-toggleable-md navbar-inverse">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="containerNav">
<div class="row">
<div class="col-6">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="navbar-brand" href="#"><img src="images/logo.png" height="30"/></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">TestPage</a>
</li>
</ul>
</div>
<div class="col-5" id="login-App">
<ul class="navbar-nav float-right">
<li class="nav-item">
<a class="nav-link" href="#">{{data.user}}</a>
</li>
<li class="nav-item">
<a class="nav-link" onclick="cleanLocalStorage()" href="login.html">Log out</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
我用jquery document.ready函数加载这个头文件html。
$(document).ready(function () {
$(".footer").load("./footer.html");
$(".header").load("./header.html");
});
因此,我无法在页面上显示Vue.js变量。这是我的Vue.js代码
var loginApp = new Vue({
el: '#login-App',
data: function () {
return {
data: {}
}
},
methods: {
fetchData: function () {
Vue.set(loginApp.data, 'user', JSON.parse(localStorage.getItem('user')).name);
}
}
});
如果我在标头html上使用cdn链接,它可以工作,但我更喜欢只在索引页面上使用。这种情况有什么诀窍吗?我应该使用Vue.js CLI而不是cdn吗?
答案 0 :(得分:1)
您应该尝试使用Single File Components作为vue中的组件加载页眉和页脚。
注意:我使用的是Babel和ES6,因为它有一些很棒的功能。
所以这是你的主要javascript文件,称之为main.js
或其他东西
// Import Vue and Vue Components
import Vue from 'vue'
import mysite-header from './components/mysite-header.vue'
import mysite-footer from './components/mysite-footer.vue'
// Setup Vue
let app = new Vue({
el:'#mysite-app',
data: {
pagename: "This can be a variable",
},
components: {
mysite-header,
mysite-footer,
},
});
现在我们为此页面构建HTML:
<html>
<head>
<!-- Normal HTML Stuff here -->
</head>
<body>
<div id="mysite-app">
<mysite-header>
</mysite-header>
<!-- Static html content, or another vue template-->
<mysite-footer>
</mysite-footer>
</div>
</body>
</html>
现在加载vue时,它会自动将自定义html标记替换为位于./components/mysite-header.vue
和./components/mysite-footer.vue
mysite-header.vue的例子:
<template>
<div class="container">
<div class="row justify-content-md-center">
<div class="col-md-8">
<div class="card">
<div class="card-block">
<h4 class="card-title">{{ titleText }}</h4>
<hr class="my-2">
<p class="card-text">
<slot></slot>
</p>
<p>Body Text: {{ bodyText }}</p>
<input v-model="titleText">
<button :title="titleText">Hover over me!</button>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
// There are properties we pass from the parent
props: ['initTitleText','bodyText'],
data() {
// We can set local data equal to a property from the parent
// To create a "default" value that isn't bound to the parent's value
return {
titleText: this.initTitleText
}
},
mounted() {
// Called when this vue is first loaded
console.log('Component mounted.')
}
}
</script>
<style>
.card {
margin: .5rem 0;
}
</style>
当然还有更多内容,但实际上解决这个问题的最佳方法是慢慢建立并尝试传递越来越多的数据,看看事情如何相互作用以及事物是如何绑定在一起的等等。总的来说,我认为你会发现自己比jQuery更多地使用vue。