我正在使用带打字稿支持的Vue Cli 3。就像有角度的一样,我试图在打字稿文件中包含特定于组件的scss文件。如何在组件中导入和使用scss文件?
我的代码如下:
HelloWorld.ts文件:
import { Component, Vue } from 'vue-property-decorator';
import WithRender from './hello-world.html';
@WithRender
@Component
export default class HelloWorld extends Vue {
}
hello-world.html文件:
<div class="hello">
<h1>{{ msg }}</h1>
<p>
For a guide and recipes on how to configure / customize this project,<br>
check out the
<a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
</p>
</div>
hello-world.scss文件:
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}