5
2

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.js の Vuetify v1.5.x を v2.0.x にアップデートしてみる

Last updated at Posted at 2019-07-26

nuxt.config.js

  css: [
-    '@/assets/style/app.styl',
    '@/assets/css/style.css'
  ],
-    loaders: {
-      stylus: {
-        import: ['~assets/style/variables.styl']
-      }
-    },  
+  devModules: ['@nuxtjs/vuetify'],
  plugins: [
-    '@/plugins/vuetify.client.js'
  ]

npm パッケージ

アップデート・インストール・削除

$ npm install vuetify@2.0.1 vuetify-loader@1.3.0
$ npm install -D sass@1.22.7
$ npm uninstall -D stylus stylus-loader

その他

画面を表示してコンソールに error [Vuetify] [BREAKING] が出ている個所などを地道に潰していく。

参考

5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?