4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vue CLI にreset.scssを入れた。

Posted at

ビューが崩れるのでreset.scssを入れたい。

色々調べてみたが App.vue の style でimport するのが簡単。

他にもやり方はあるが、今回はこの方法でやってみる。

src に css フォルダーを作成し、reset.scss を入れる。

あとは App.vue の style タグで import するだけ。

src/App.vue
<style lang="scss">
@import "./css/reset.scss";     <!-- 左の記述を追加 -->
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  
}
</style>

変な所についていた margin が消えたので reset.scss が効いていることが確認できた。

他にも npm でインストールするやり方などあるので、次回はそちらを試してみたい。



参考記事:【Vue CLI】普通の外部CSSをcomponent全体に反映させたい

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?