如何使用Vue CLI3添加或导入CSS以进行即时原型制作?
我通过vue serve MyComponent.vue
提供原型服务,但是如果我将<style>
标签添加到模板中,则会被忽略...
我想导入Tailwind CSS。
<template>
<div id="ds-configurator" class="test">
Test
dva
</div>
</template>
<!-- this is ignored when served -->
<style>
html, body {
height:100%;
min-height:100%;
}
#ds-configurator, .test {
background: #eee;
}
<style>
答案 0 :(得分:0)
我发现我可以提供自己的index.html
,可以在其中导入Tailwind CSS或其他任何内容。