We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e0bacc + 70a25de commit abec1cfCopy full SHA for abec1cf
VueComponent.vue
@@ -10,4 +10,10 @@ export default {
10
}
11
12
13
-</script>
+</script>
14
+
15
+<style type="text/css">
16
+ label{
17
+ color: red;
18
+ }
19
+</style>
webpack.config.js
@@ -111,7 +111,10 @@ function getRules() {
111
// .vue single file component support
112
{
113
test: /\.vue$/,
114
- loader: 'vue-loader'
+ loader: 'vue-loader',
115
+ options: {
116
+ extractCSS: true
117
118
},
119
];
120
0 commit comments