21
18

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 5 years have passed since last update.

Nuxt+Vueで、SVGを使う方法がめっちゃ簡単だった件

Last updated at Posted at 2019-07-25

ポートフォリオサイトを作ってみました。
その際、SVGを使うことがあったので、
知見として、記事にしておこうかと。

#nuxt-svg-loaderのインストール
まずは、nuxt-svg-loaderをインストールしていきます。
npm:nuxt-svg-loader

npm i -D nuxt-svg-loader

#基本設定
インストールした、nuxt-svg-loaderをnuxt.config.jsのmodulesに追記する。

nuxt.config.js
  ....
  /*
   ** Nuxt.js modules
   */
  modules: [
    'nuxt-svg-loader'
  ],
  ....

#読み込みたいSVGを読み込む
pages/index.vueなどSVGを使いたいところページに下記ソースを記述。
importにSVGのパスを指定し、componentsに記述したcomponent名をtemplate内に追加。
これでnpm run devしたら読み込まれてると思います。
ワイ「めっちゃ簡単やんけ!!すごいな!!!」と感動しましたとさ。。。

index.vue
<template>
  <div class="svg">
    <SampleSvg />
  </div>
</template>

<script>
import SampleSvg from '@/assets/images/svg/sample.svg'

export default {
  components: {
    SampleSvg
  }
}
</script>
21
18
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
21
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?