59
34

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.

Nuxt.jsのプロジェクトにVuetify.jsを導入する方法

Last updated at Posted at 2018-10-22

Nuxt.jsのプロジェクトに、Vuetify.jsを導入する方法を紹介します。

create-nuxt-appを使用する場合

プロジェクトの作成にcreate-nuxt-appを使用する場合、UIフレームワークのオプションでvuetifyを選択するだけで導入することができます。

create-nuxt-appを使用しない場合

Nuxt.jsのスターターテンプレートや、スクラッチからプロジェクトを作っている場合は、自分でVuetify.jsのモジュールを追加する必要があります。

パッケージをインストール

nuxtjsが提供しているVuetify.js用のモジュールである@nuxtjs/vuetifyをインストールします。

$ npm i -D @nuxtjs/vuetify

プロジェクトにモジュールを追加

nuxt.config.jsファイルのmodulesに、@nuxtjs/vuetifyを追加します。

例:

nuxt.config.js
module.exports = {
  modules: [
    '@nuxtjs/vuetify'
  ]
}

これだけで、各コンポーネント内でVuetify.jsのコンポーネントを使用することができます。

使用例

59
34
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
59
34

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?