vue项目中单文件组件xx.vue文件太长,我们想分离成独立的文件,然后做到热重载和预编译
官网链接<!-- my-component.vue --><template><div>This will be pre-compiled</div></template><script src="./my-component.js"></script><style src="./my...
·
<!-- my-component.vue -->
<template>
<div>This will be pre-compiled</div>
</template>
<script src="./my-component.js"></script>
<style src="./my-component.css"></style>
- 需要注意的是css文件引入的时候不要用@import
<style lang="scss" scoped>
@import "../assets/scss/app.scss";
</style>
<!-- @import的css作用域是全局,如何解决?见如下 -->
<style lang="scss" scoped src="../assets/scss/app.scss"></style>
更多推荐
已为社区贡献15条内容
所有评论(0)