.vue文件中引入单独的css文件

发布时间 2023-05-25 11:30:24作者: ZerlinM

问题描述

单页面应用中一般把样式文件写在.vue文件中,如下:

<style scoped>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  margin-top: 60px;
  font-size: 14px;
}

如果引入单独的css样式文件,也实现模块化(不影响其他页面样式)

<style scoped src="./index.css"></style>