refactor: cleaned project structure

This commit is contained in:
Corentin Thomasset 2020-12-21 22:49:27 +01:00
parent c66e2097b6
commit c554017e43
No known key found for this signature in database
GPG key ID: DBD997E935996158
19 changed files with 182 additions and 200 deletions

View file

@ -2,16 +2,14 @@ module.exports = {
root: true, root: true,
env: { env: {
browser: true, browser: true,
node: true, node: true
}, },
extends: [ extends: [
'@nuxtjs/eslint-config-typescript', '@nuxtjs/eslint-config-typescript',
'prettier', 'plugin:nuxt/recommended'
'prettier/vue',
'plugin:prettier/recommended',
'plugin:nuxt/recommended',
], ],
plugins: ['prettier'],
// add your custom rules here // add your custom rules here
rules: {}, rules: {
'space-before-function-paren': 'off'
}
} }

View file

@ -1,4 +0,0 @@
{
"semi": false,
"singleQuote": true
}

View file

@ -1,7 +0,0 @@
# ASSETS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).

View file

@ -1,4 +0,0 @@
// Ref: https://github.com/nuxt-community/vuetify-module#customvariables
//
// The variables you want to modify
// $font-size-root: 20px;

View file

@ -1,79 +0,0 @@
<template>
<div class="VueToNuxtLogo">
<div class="Triangle Triangle--two" />
<div class="Triangle Triangle--one" />
<div class="Triangle Triangle--three" />
<div class="Triangle Triangle--four" />
</div>
</template>
<style>
.VueToNuxtLogo {
display: inline-block;
animation: turn 2s linear forwards 1s;
transform: rotateX(180deg);
position: relative;
overflow: hidden;
height: 180px;
width: 245px;
}
.Triangle {
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
}
.Triangle--one {
border-left: 105px solid transparent;
border-right: 105px solid transparent;
border-bottom: 180px solid #41b883;
}
.Triangle--two {
top: 30px;
left: 35px;
animation: goright 0.5s linear forwards 3.5s;
border-left: 87.5px solid transparent;
border-right: 87.5px solid transparent;
border-bottom: 150px solid #3b8070;
}
.Triangle--three {
top: 60px;
left: 35px;
animation: goright 0.5s linear forwards 3.5s;
border-left: 70px solid transparent;
border-right: 70px solid transparent;
border-bottom: 120px solid #35495e;
}
.Triangle--four {
top: 120px;
left: 70px;
animation: godown 0.5s linear forwards 3s;
border-left: 35px solid transparent;
border-right: 35px solid transparent;
border-bottom: 60px solid #fff;
}
@keyframes turn {
100% {
transform: rotateX(0deg);
}
}
@keyframes godown {
100% {
top: 180px;
}
}
@keyframes goright {
100% {
left: 70px;
}
}
</style>

View file

@ -1,18 +0,0 @@
<template>
<img class="VuetifyLogo" alt="Vuetify Logo" src="/vuetify-logo.svg" />
</template>
<style>
.VuetifyLogo {
height: 180px;
width: 180px;
transform: rotateY(560deg);
animation: turn 3.5s ease-out forwards 1s;
}
@keyframes turn {
100% {
transform: rotateY(0deg);
}
}
</style>

View file

@ -2,17 +2,17 @@ module.exports = {
moduleNameMapper: { moduleNameMapper: {
'^@/(.*)$': '<rootDir>/$1', '^@/(.*)$': '<rootDir>/$1',
'^~/(.*)$': '<rootDir>/$1', '^~/(.*)$': '<rootDir>/$1',
'^vue$': 'vue/dist/vue.common.js', '^vue$': 'vue/dist/vue.common.js'
}, },
moduleFileExtensions: ['ts', 'js', 'vue', 'json'], moduleFileExtensions: ['ts', 'js', 'vue', 'json'],
transform: { transform: {
'^.+\\.ts$': 'ts-jest', '^.+\\.ts$': 'ts-jest',
'^.+\\.js$': 'babel-jest', '^.+\\.js$': 'babel-jest',
'.*\\.(vue)$': 'vue-jest', '.*\\.(vue)$': 'vue-jest'
}, },
collectCoverage: true, collectCoverage: true,
collectCoverageFrom: [ collectCoverageFrom: [
'<rootDir>/components/**/*.vue', '<rootDir>/components/**/*.vue',
'<rootDir>/pages/**/*.vue', '<rootDir>/pages/**/*.vue'
], ]
} }

View file

@ -50,7 +50,9 @@
<v-list> <v-list>
<v-list-item @click.native="right = !right"> <v-list-item @click.native="right = !right">
<v-list-item-action> <v-list-item-action>
<v-icon light> mdi-repeat </v-icon> <v-icon light>
mdi-repeat
</v-icon>
</v-list-item-action> </v-list-item-action>
<v-list-item-title>Switch drawer (click me)</v-list-item-title> <v-list-item-title>Switch drawer (click me)</v-list-item-title>
</v-list-item> </v-list-item>
@ -73,19 +75,19 @@ export default {
{ {
icon: 'mdi-apps', icon: 'mdi-apps',
title: 'Welcome', title: 'Welcome',
to: '/', to: '/'
}, },
{ {
icon: 'mdi-chart-bubble', icon: 'mdi-chart-bubble',
title: 'Inspire', title: 'Inspire',
to: '/inspire', to: '/inspire'
}, }
], ],
miniVariant: false, miniVariant: false,
right: true, right: true,
rightDrawer: false, rightDrawer: false,
title: 'Vuetify.js', title: 'Vuetify.js'
}
} }
},
} }
</script> </script>

View file

@ -6,7 +6,9 @@
<h1 v-else> <h1 v-else>
{{ otherError }} {{ otherError }}
</h1> </h1>
<NuxtLink to="/"> Home page </NuxtLink> <NuxtLink to="/">
Home page
</NuxtLink>
</v-app> </v-app>
</template> </template>
@ -16,22 +18,22 @@ export default {
props: { props: {
error: { error: {
type: Object, type: Object,
default: null, default: null
}, }
}, },
data() { data() {
return { return {
pageNotFound: '404 Not Found', pageNotFound: '404 Not Found',
otherError: 'An error occurred', otherError: 'An error occurred'
} }
}, },
head() { head() {
const title = const title =
this.error.statusCode === 404 ? this.pageNotFound : this.otherError this.error.statusCode === 404 ? this.pageNotFound : this.otherError
return { return {
title, title
}
} }
},
} }
</script> </script>

View file

@ -1,8 +0,0 @@
# MIDDLEWARE
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your application middleware.
Middleware let you define custom functions that can be run before rendering either a page or a group of pages.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware).

View file

@ -14,9 +14,9 @@ export default {
meta: [ meta: [
{ charset: 'utf-8' }, { charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' }, { hid: 'description', name: 'description', content: '' }
], ],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }], link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
}, },
// Global CSS (https://go.nuxtjs.dev/config-css) // Global CSS (https://go.nuxtjs.dev/config-css)
@ -33,7 +33,7 @@ export default {
// https://go.nuxtjs.dev/typescript // https://go.nuxtjs.dev/typescript
'@nuxt/typescript-build', '@nuxt/typescript-build',
// https://go.nuxtjs.dev/vuetify // https://go.nuxtjs.dev/vuetify
'@nuxtjs/vuetify', '@nuxtjs/vuetify'
], ],
// Modules (https://go.nuxtjs.dev/config-modules) // Modules (https://go.nuxtjs.dev/config-modules)
@ -41,7 +41,7 @@ export default {
// https://go.nuxtjs.dev/axios // https://go.nuxtjs.dev/axios
'@nuxtjs/axios', '@nuxtjs/axios',
// https://go.nuxtjs.dev/pwa // https://go.nuxtjs.dev/pwa
'@nuxtjs/pwa', '@nuxtjs/pwa'
], ],
// Axios module configuration (https://go.nuxtjs.dev/config-axios) // Axios module configuration (https://go.nuxtjs.dev/config-axios)
@ -60,12 +60,12 @@ export default {
info: colors.teal.lighten1, info: colors.teal.lighten1,
warning: colors.amber.base, warning: colors.amber.base,
error: colors.deepOrange.accent4, error: colors.deepOrange.accent4,
success: colors.green.accent3, success: colors.green.accent3
}, }
}, }
}, }
}, },
// Build Configuration (https://go.nuxtjs.dev/config-build) // Build Configuration (https://go.nuxtjs.dev/config-build)
build: {}, build: {}
} }

132
package-lock.json generated
View file

@ -5366,6 +5366,15 @@
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
}, },
"copy-anything": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.1.tgz",
"integrity": "sha512-lA57e7viQHOdPQcrytv5jFeudZZOXuyk47lZym279FiDQ8jeZomXiGuVf6ffMKkJ+3TIai3J1J3yi6M+/4U35g==",
"dev": true,
"requires": {
"is-what": "^3.7.1"
}
},
"copy-concurrently": { "copy-concurrently": {
"version": "1.0.5", "version": "1.0.5",
"resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
@ -8621,6 +8630,13 @@
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
"integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="
}, },
"image-size": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz",
"integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=",
"dev": true,
"optional": true
},
"import-cwd": { "import-cwd": {
"version": "2.1.0", "version": "2.1.0",
"resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz",
@ -9075,6 +9091,12 @@
"integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
"dev": true "dev": true
}, },
"is-what": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/is-what/-/is-what-3.12.0.tgz",
"integrity": "sha512-2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw==",
"dev": true
},
"is-whitespace": { "is-whitespace": {
"version": "0.3.0", "version": "0.3.0",
"resolved": "https://registry.npmjs.org/is-whitespace/-/is-whitespace-0.3.0.tgz", "resolved": "https://registry.npmjs.org/is-whitespace/-/is-whitespace-0.3.0.tgz",
@ -10669,6 +10691,12 @@
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
"dev": true "dev": true
}, },
"klona": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz",
"integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==",
"dev": true
},
"last-call-webpack-plugin": { "last-call-webpack-plugin": {
"version": "3.0.0", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz",
@ -10707,6 +10735,85 @@
"launch-editor": "^2.2.1" "launch-editor": "^2.2.1"
} }
}, },
"less": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/less/-/less-4.0.0.tgz",
"integrity": "sha512-av1eEa2D0xZfF7fjLJS/Dld7zAYSLU7EOEJvuOELeaNI3i6L/81AdjbK5/pytaRkBwi7ZEa0433IDvMLskKCOw==",
"dev": true,
"requires": {
"copy-anything": "^2.0.1",
"errno": "^0.1.1",
"graceful-fs": "^4.1.2",
"image-size": "~0.5.0",
"make-dir": "^2.1.0",
"mime": "^1.4.1",
"native-request": "^1.0.5",
"parse-node-version": "^1.0.1",
"source-map": "~0.6.0",
"tslib": "^1.10.0"
},
"dependencies": {
"make-dir": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
"dev": true,
"optional": true,
"requires": {
"pify": "^4.0.1",
"semver": "^5.6.0"
}
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"dev": true,
"optional": true
},
"tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"dev": true
}
}
},
"less-loader": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/less-loader/-/less-loader-7.1.0.tgz",
"integrity": "sha512-EHbnRaTzHgsxnd3RK6OXSiygcCJs72+2ezXVLg+Hgl/ijUTtthKZXZh4MvQkWJr3h/SSKvxGZr7IIHzuS2KbVQ==",
"dev": true,
"requires": {
"klona": "^2.0.4",
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0"
},
"dependencies": {
"loader-utils": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
"integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
"dev": true,
"requires": {
"big.js": "^5.2.2",
"emojis-list": "^3.0.0",
"json5": "^2.1.2"
}
},
"schema-utils": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz",
"integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==",
"dev": true,
"requires": {
"@types/json-schema": "^7.0.6",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
}
}
}
},
"leven": { "leven": {
"version": "3.1.0", "version": "3.1.0",
"resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
@ -11223,6 +11330,13 @@
"to-regex": "^3.0.1" "to-regex": "^3.0.1"
} }
}, },
"native-request": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/native-request/-/native-request-1.0.8.tgz",
"integrity": "sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag==",
"dev": true,
"optional": true
},
"natural-compare": { "natural-compare": {
"version": "1.4.0", "version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
@ -11814,6 +11928,12 @@
"json-parse-better-errors": "^1.0.1" "json-parse-better-errors": "^1.0.1"
} }
}, },
"parse-node-version": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz",
"integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==",
"dev": true
},
"parse-path": { "parse-path": {
"version": "4.0.2", "version": "4.0.2",
"resolved": "https://registry.npmjs.org/parse-path/-/parse-path-4.0.2.tgz", "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-4.0.2.tgz",
@ -12912,12 +13032,6 @@
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
"integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw="
}, },
"prettier": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz",
"integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==",
"dev": true
},
"prettier-linter-helpers": { "prettier-linter-helpers": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
@ -15830,6 +15944,12 @@
"resolved": "https://registry.npmjs.org/vue-no-ssr/-/vue-no-ssr-1.1.1.tgz", "resolved": "https://registry.npmjs.org/vue-no-ssr/-/vue-no-ssr-1.1.1.tgz",
"integrity": "sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g==" "integrity": "sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g=="
}, },
"vue-property-decorator": {
"version": "9.1.2",
"resolved": "https://registry.npmjs.org/vue-property-decorator/-/vue-property-decorator-9.1.2.tgz",
"integrity": "sha512-xYA8MkZynPBGd/w5QFJ2d/NM0z/YeegMqYTphy7NJQXbZcuU6FC6AOdUAcy4SXP+YnkerC6AfH+ldg7PDk9ESQ==",
"dev": true
},
"vue-router": { "vue-router": {
"version": "3.4.9", "version": "3.4.9",
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.9.tgz", "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.9.tgz",

View file

@ -4,7 +4,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "nuxt-ts", "dev": "nuxt-ts",
"build": "nuxt-ts build", "build": "npm run generate",
"start": "nuxt-ts start", "start": "nuxt-ts start",
"generate": "nuxt-ts generate", "generate": "nuxt-ts generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .", "lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
@ -34,8 +34,10 @@
"eslint-plugin-nuxt": "^1.0.0", "eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4", "eslint-plugin-prettier": "^3.1.4",
"jest": "^26.5.0", "jest": "^26.5.0",
"prettier": "^2.1.2", "less": "^4.0.0",
"less-loader": "^7.1.0",
"ts-jest": "^26.4.1", "ts-jest": "^26.4.1",
"vue-jest": "^3.0.4" "vue-jest": "^3.0.4",
"vue-property-decorator": "^9.1.2"
} }
} }

View file

@ -1,15 +1,13 @@
<template> <template>
<v-row justify="center" align="center"> <v-row justify="center" align="center">
<v-col cols="12" sm="8" md="6"> <v-col cols="12" sm="8" md="6">
<div class="text-center"> <div class="text-center"/>
<logo />
<vuetify-logo />
</div>
<v-card> <v-card>
<v-card-title class="headline"> <v-card-title class="headline">
Welcome to the Vuetify + Nuxt.js template Welcome to the Vuetify + Nuxt.js template
</v-card-title> </v-card-title>
<v-card-text> <v-card-text>
<p> <p>
Vuetify is a progressive Material Design component framework for Vuetify is a progressive Material Design component framework for
Vue.js. It was designed to empower developers to create amazing Vue.js. It was designed to empower developers to create amazing
@ -22,8 +20,7 @@
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
documentation </a documentation </a>.
>.
</p> </p>
<p> <p>
If you have questions, please join the official If you have questions, please join the official
@ -33,8 +30,7 @@
rel="noopener noreferrer" rel="noopener noreferrer"
title="chat" title="chat"
> >
discord </a discord </a>.
>.
</p> </p>
<p> <p>
Find a bug? Report it on the github Find a bug? Report it on the github
@ -44,8 +40,7 @@
rel="noopener noreferrer" rel="noopener noreferrer"
title="contribute" title="contribute"
> >
issue board </a issue board </a>.
>.
</p> </p>
<p> <p>
Thank you for developing with Vuetify and I look forward to bringing Thank you for developing with Vuetify and I look forward to bringing
@ -54,7 +49,7 @@
<div class="text-xs-right"> <div class="text-xs-right">
<em><small>&mdash; John Leider</small></em> <em><small>&mdash; John Leider</small></em>
</div> </div>
<hr class="my-3" /> <hr class="my-3">
<a <a
href="https://nuxtjs.org/" href="https://nuxtjs.org/"
target="_blank" target="_blank"
@ -62,7 +57,7 @@
> >
Nuxt Documentation Nuxt Documentation
</a> </a>
<br /> <br>
<a <a
href="https://github.com/nuxt/nuxt.js" href="https://github.com/nuxt/nuxt.js"
target="_blank" target="_blank"
@ -72,8 +67,10 @@
</a> </a>
</v-card-text> </v-card-text>
<v-card-actions> <v-card-actions>
<v-spacer /> <v-spacer/>
<v-btn color="primary" nuxt to="/inspire"> Continue </v-btn> <v-btn color="primary" nuxt to="/inspire">
Continue
</v-btn>
</v-card-actions> </v-card-actions>
</v-card> </v-card>
</v-col> </v-col>
@ -81,13 +78,12 @@
</template> </template>
<script> <script>
import Logo from '~/components/Logo.vue'
import VuetifyLogo from '~/components/VuetifyLogo.vue'
export default { export default {
components: { components: {}
Logo,
VuetifyLogo,
},
} }
</script> </script>
<style lang="less">
</style>

View file

@ -1,7 +1,7 @@
<template> <template>
<v-row> <v-row>
<v-col class="text-center"> <v-col class="text-center">
<img src="/v.png" alt="Vuetify.js" class="mb-5" /> <img src="/v.png" alt="Vuetify.js" class="mb-5">
<blockquote class="blockquote"> <blockquote class="blockquote">
&#8220;First, solve the problem. Then, write the code.&#8221; &#8220;First, solve the problem. Then, write the code.&#8221;
<footer> <footer>

View file

@ -1,7 +0,0 @@
# PLUGINS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains Javascript plugins that you want to run before mounting the root Vue.js application.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -1 +0,0 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.5 100"><defs><style>.cls-1{fill:#1697f6;}.cls-2{fill:#7bc6ff;}.cls-3{fill:#1867c0;}.cls-4{fill:#aeddff;}</style></defs><title>Artboard 46</title><polyline class="cls-1" points="43.75 0 23.31 0 43.75 48.32"/><polygon class="cls-2" points="43.75 62.5 43.75 100 0 14.58 22.92 14.58 43.75 62.5"/><polyline class="cls-3" points="43.75 0 64.19 0 43.75 48.32"/><polygon class="cls-4" points="64.58 14.58 87.5 14.58 43.75 100 43.75 62.5 64.58 14.58"/></svg>

Before

Width:  |  Height:  |  Size: 539 B

View file

@ -1,10 +0,0 @@
# STORE
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your Vuex Store files.
Vuex Store option is implemented in the Nuxt.js framework.
Creating a file in this directory automatically activates the option in the framework.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).