Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 1c8d944

Browse files
lv-kitclarkdo
authored andcommitted
feat(vuetify): use vuetify module (#225)
1 parent 2f2f968 commit 1c8d944

File tree

5 files changed

+71
-34
lines changed

5 files changed

+71
-34
lines changed

template/_package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@
4343
"@adonisjs/shield": "^1.0.4"<% } %><% if (ui === 'bootstrap') { %>,
4444
"bootstrap-vue": "^2.0.0-rc.11",
4545
"bootstrap": "^4.1.3"<% } else if (ui === 'vuetify') { %>,
46-
"vuetify": "^1.5.5",
47-
"vuetify-loader": "^1.2.1"<% } else if (ui === 'bulma') { %>,
46+
"@nuxtjs/vuetify": "0.5.5"<% } else if (ui === 'bulma') { %>,
4847
"@nuxtjs/bulma": "^1.2.1"<% } else if (ui === 'element-ui') { %>,
4948
"element-ui": "^2.4.11"<% } else if (ui === 'ant-design-vue') { %>,
5049
"ant-design-vue": "^1.1.10"<% } else if (ui === 'buefy') { %>,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<template>
2+
<v-app dark>
3+
<h1 v-if="error.statusCode === 404">
4+
{{ pageNotFound }}
5+
</h1>
6+
<h1 v-else>
7+
{{ otherError }}
8+
</h1>
9+
<NuxtLink to="/">
10+
Home page
11+
</NuxtLink>
12+
</v-app>
13+
</template>
14+
15+
<script>
16+
export default {
17+
layout: 'empty',
18+
props: {
19+
error: {
20+
type: Object,
21+
default: null
22+
}
23+
},
24+
head() {
25+
const title =
26+
this.error.statusCode === 404 ? this.pageNotFound : this.otherError
27+
return {
28+
title
29+
}
30+
},
31+
data() {
32+
return {
33+
pageNotFound: '404 Not Found',
34+
otherError: 'An error occurred',
35+
}
36+
}
37+
}
38+
</script>
39+
40+
<style scoped>
41+
h1 {
42+
font-size: 20px;
43+
}
44+
</style>

template/frameworks/vuetify/plugins/vuetify.js

-15
This file was deleted.

template/nuxt/nuxt.config.js

+26-17
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
<% if (esm) { -%>
22
<% if (ui === 'vuetify') { -%>
3-
import VuetifyLoaderPlugin from 'vuetify-loader/lib/plugin'
3+
import colors from 'vuetify/es5/util/colors'
44
<% } -%>
55
<% } else if (server === 'adonis') { -%>
66
const { resolve } = require('path')
77
<%} else { -%>
88
<% } -%>
9-
<% if (!esm) { -%>
10-
<% if (ui === 'vuetify') { %>const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')<% } %>
11-
<% } -%>
12-
139
<% if (esm) { -%>
1410
export default {
1511
<% } else { -%>
@@ -24,6 +20,9 @@ module.exports = {
2420
** Headers of the page
2521
*/
2622
head: {
23+
<% if (ui === 'vuetify') { %>
24+
titleTemplate: '%s - ' + process.env.npm_package_name,
25+
<% } %>
2726
title: process.env.npm_package_name || '',
2827
meta: [
2928
{ charset: 'utf-8' },
@@ -50,8 +49,7 @@ module.exports = {
5049
*/
5150
css: [<% if (ui === 'element-ui') { %>
5251
'element-ui/lib/theme-chalk/index.css'<% } else if (ui === 'tailwind') { %>
53-
'~/assets/css/tailwind.css'<% } else if (ui === 'vuetify') { %>
54-
'~/assets/style/app.styl'<% } else if (ui === 'iview') { %>
52+
'~/assets/css/tailwind.css'<% } else if (ui === 'iview') { %>
5553
'iview/dist/styles/iview.css'<% } else if (ui === 'ant-design-vue') { %>
5654
'ant-design-vue/dist/antd.css'<% } else if (ui === 'tachyons') { %>
5755
'tachyons/css/tachyons.css'<% } %>
@@ -61,8 +59,7 @@ module.exports = {
6159
** Plugins to load before mounting the App
6260
*/
6361
plugins: [<% if (ui === 'element-ui') { %>
64-
'@/plugins/element-ui'<% } else if (ui === 'vuetify') { %>
65-
'@/plugins/vuetify'<% } else if (ui === 'iview') { %>
62+
'@/plugins/element-ui'<% } else if (ui === 'iview') { %>
6663
'@/plugins/iview'<% } else if (ui === 'ant-design-vue') { %>
6764
'@/plugins/antd-ui'<% } %>
6865
],
@@ -80,14 +77,33 @@ module.exports = {
8077
// Doc: https://buefy.github.io/#/documentation
8178
'nuxt-buefy',<% } %><% if (pwa === 'yes') { %>
8279
'@nuxtjs/pwa',<% } %><% if (eslint === 'yes') { %>
83-
'@nuxtjs/eslint-module',<% } %>
80+
'@nuxtjs/eslint-module',<% } %><% if (ui === 'vuetify') { %>
81+
'@nuxtjs/vuetify',<% } %>
8482
],
8583
<% if (axios === 'yes') { %>
8684
/*
8785
** Axios module configuration
8886
** See https://axios.nuxtjs.org/options
8987
*/
9088
axios: {
89+
90+
},<% } %>
91+
92+
<% if (ui === 'vuetify') { %>
93+
/*
94+
** vuetify module configuration
95+
** https://github.com/nuxt-community/vuetify-module
96+
*/
97+
vuetify: {
98+
theme: {
99+
primary: colors.blue.darken2,
100+
accent: colors.grey.darken3,
101+
secondary: colors.amber.darken3,
102+
info: colors.teal.lighten1,
103+
warning: colors.amber.base,
104+
error: colors.deepOrange.accent4,
105+
success: colors.green.accent3
106+
}
91107
},<% } %>
92108

93109
/*
@@ -100,13 +116,6 @@ module.exports = {
100116
customProperties: false
101117
}
102118
}
103-
},<% } %><% if (ui === 'vuetify') { %>
104-
transpile: ['vuetify/lib'],
105-
plugins: [new VuetifyLoaderPlugin()],
106-
loaders: {
107-
stylus: {
108-
import: ['~assets/style/variables.styl']
109-
}
110119
},<% } %><% if (ui === 'element-ui') { %>
111120
transpile: [/^element-ui/],
112121
<% } %>

test/snapshots/index.test.js.snap

3 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)