-
-
Main content
-
- Primary button
-
-
- Secondary button
-
-
- Success button
-
-
+
+
+
+
+ mdi-theme-light-dark
+
+
+
+
diff --git a/examples/with-vuetify/plugins/vuetify.js b/examples/with-vuetify/plugins/vuetify.js
deleted file mode 100644
index 12bb590ca4..0000000000
--- a/examples/with-vuetify/plugins/vuetify.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import Vue from 'vue'
-import Vuetify from 'vuetify/lib'
-import colors from 'vuetify/es5/util/colors'
-
-// You can also specify those components you are going to use for "a la carte" build:
-// https://github.com/vuetifyjs/nuxt/blob/master/template/plugins/vuetify.js
-// https://github.com/vuetifyjs/a-la-carte/blob/master/template/src/main.js
-
-Vue.use(Vuetify, {
- theme: {
- primary: '#9c27b0', // a color that is not in the material colors palette
- accent: colors.grey.darken3,
- secondary: colors.amber.darken3,
- info: colors.teal.lighten1,
- warning: colors.amber.darken2,
- error: colors.deepOrange.accent4,
- success: colors.green.accent3
- }
-})
diff --git a/examples/with-vuetify/vuetify.options.js b/examples/with-vuetify/vuetify.options.js
new file mode 100644
index 0000000000..5fba530392
--- /dev/null
+++ b/examples/with-vuetify/vuetify.options.js
@@ -0,0 +1,13 @@
+import colors from 'vuetify/es5/util/colors'
+
+export default {
+ theme: {
+ dark: true,
+ themes: {
+ dark: {
+ primary: colors.red.base,
+ test: colors.blue.base
+ }
+ }
+ }
+}