Nuxt.jsでCSSをインポートする方法


<template>
 <div>
   <h1>Hello World!</h1>
 </div>
</template>
<script>
export default {
 name: 'MyComponent',
}
</script>
<style>
h1 {
 color: blue;
}
</style>

上記の例では、\