也就是说你的项目不是SPA喽。基本是每个页面也可以是一个.vue,直接在.vue中书写样式就可以了。
比如我想在footer.vue中引入style.css这个样式。
那么我就可以直接这么写:
<template lang="html">
<footer>
<div class="left">
<img src="./logo_baijia.png" alt="">
</div>
<div class="right">
<p>联系我们:[email protected]</p>
<p>百度新闻独家出品</p>
</div>
</footer>
</template>
<script>
export default {
}
</script>
<style lang="css" scoped>
@import "style.css",就这么写就成,很容易也很方便。
</style>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…