├── .babelrc ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .husky └── commit-msg ├── .prettierrc ├── Dockerfile ├── README.md ├── api ├── Api.js ├── CustomApi.js └── apiUrl.js ├── assets ├── fonts │ └── gotham-rounded │ │ ├── GothamRounded-Bold.otf │ │ ├── GothamRounded-BoldItalic.otf │ │ ├── GothamRounded-Book.otf │ │ ├── GothamRounded-BookItalic.otf │ │ ├── GothamRounded-Light.otf │ │ ├── GothamRounded-LightItalic.otf │ │ ├── GothamRounded-Medium.otf │ │ ├── GothamRounded-MediumItalic.otf │ │ ├── GothamRoundedBold_21016.ttf │ │ ├── GothamRoundedBook_21018.ttf │ │ ├── GothamRoundedLight_21020.ttf │ │ ├── GothamRoundedMedium_21022.ttf │ │ └── sharefonts.net.txt ├── images │ ├── 404.svg │ ├── Logo.png │ └── error.svg └── scss │ ├── app │ ├── _app.scss │ ├── _custom.scss │ ├── _responsive.scss │ ├── _transition.scss │ ├── _utils.scss │ ├── _variables.scss │ └── page │ │ ├── _auth.scss │ │ ├── _forgot-password.scss │ │ └── _login.scss │ ├── colors.scss │ ├── main.scss │ └── variables.scss ├── commitlint.config.js ├── components ├── Base │ ├── Button.vue │ ├── Card.vue │ ├── Dialog.vue │ ├── Input.vue │ ├── Select.vue │ └── Table.vue ├── Dialog │ └── Modal.vue ├── LoadingBar.vue ├── LoadingCustom.vue ├── PageTitle.vue └── layouts │ ├── TheAppBar.vue │ └── TheSideBar.vue ├── consts └── consts.js ├── docker-compose.yml ├── helpers └── Utils.js ├── jest.config.js ├── jsconfig.json ├── layouts ├── auth.vue ├── blank.vue ├── default.vue └── error.vue ├── middleware ├── authenticated.js └── guest.js ├── nuxt.config.js ├── package.json ├── pages ├── auth │ ├── component.vue │ ├── dropdown │ │ └── _id.vue │ ├── fetch.vue │ ├── home.vue │ └── table.vue ├── change-password.vue ├── forgot-password.vue ├── index.vue ├── login.vue ├── otp-code.vue └── testing.vue ├── payloads └── RequestFetch.js ├── plugins ├── api.js ├── axios.js ├── nuxt-client-init.js └── vee-validate.js ├── services └── fetchServices.js ├── static ├── favicon.ico ├── v.png └── vuetify-logo.svg ├── store ├── fetch.js ├── index.js └── sidebar.js └── test └── NuxtLogo.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/README.md -------------------------------------------------------------------------------- /api/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/api/Api.js -------------------------------------------------------------------------------- /api/CustomApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/api/CustomApi.js -------------------------------------------------------------------------------- /api/apiUrl.js: -------------------------------------------------------------------------------- 1 | /* 2 | * BASE URLS 3 | */ 4 | 5 | export const PREFIX = '/api/' 6 | -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-BoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-Book.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-BookItalic.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-Light.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-LightItalic.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRounded-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRounded-MediumItalic.otf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRoundedBold_21016.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRoundedBold_21016.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRoundedBook_21018.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRoundedBook_21018.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRoundedLight_21020.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRoundedLight_21020.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/GothamRoundedMedium_21022.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/GothamRoundedMedium_21022.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-rounded/sharefonts.net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/fonts/gotham-rounded/sharefonts.net.txt -------------------------------------------------------------------------------- /assets/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/images/404.svg -------------------------------------------------------------------------------- /assets/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/images/Logo.png -------------------------------------------------------------------------------- /assets/images/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/images/error.svg -------------------------------------------------------------------------------- /assets/scss/app/_app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/scss/app/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/app/_custom.scss -------------------------------------------------------------------------------- /assets/scss/app/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/app/_responsive.scss -------------------------------------------------------------------------------- /assets/scss/app/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/app/_transition.scss -------------------------------------------------------------------------------- /assets/scss/app/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/app/_utils.scss -------------------------------------------------------------------------------- /assets/scss/app/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variable 2 | 3 | -------------------------------------------------------------------------------- /assets/scss/app/page/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/app/page/_auth.scss -------------------------------------------------------------------------------- /assets/scss/app/page/_forgot-password.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/scss/app/page/_login.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/scss/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/colors.scss -------------------------------------------------------------------------------- /assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/main.scss -------------------------------------------------------------------------------- /assets/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/assets/scss/variables.scss -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /components/Base/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/Base/Button.vue -------------------------------------------------------------------------------- /components/Base/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/Base/Card.vue -------------------------------------------------------------------------------- /components/Base/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/Base/Dialog.vue -------------------------------------------------------------------------------- /components/Base/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/Base/Input.vue -------------------------------------------------------------------------------- /components/Base/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/Base/Select.vue -------------------------------------------------------------------------------- /components/Base/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/Base/Table.vue -------------------------------------------------------------------------------- /components/Dialog/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/Dialog/Modal.vue -------------------------------------------------------------------------------- /components/LoadingBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/LoadingBar.vue -------------------------------------------------------------------------------- /components/LoadingCustom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/LoadingCustom.vue -------------------------------------------------------------------------------- /components/PageTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/PageTitle.vue -------------------------------------------------------------------------------- /components/layouts/TheAppBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/layouts/TheAppBar.vue -------------------------------------------------------------------------------- /components/layouts/TheSideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/components/layouts/TheSideBar.vue -------------------------------------------------------------------------------- /consts/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/consts/consts.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /helpers/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/helpers/Utils.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/auth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/layouts/auth.vue -------------------------------------------------------------------------------- /layouts/blank.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/layouts/blank.vue -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/layouts/error.vue -------------------------------------------------------------------------------- /middleware/authenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/middleware/authenticated.js -------------------------------------------------------------------------------- /middleware/guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/middleware/guest.js -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/package.json -------------------------------------------------------------------------------- /pages/auth/component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/auth/component.vue -------------------------------------------------------------------------------- /pages/auth/dropdown/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/auth/dropdown/_id.vue -------------------------------------------------------------------------------- /pages/auth/fetch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/auth/fetch.vue -------------------------------------------------------------------------------- /pages/auth/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/auth/home.vue -------------------------------------------------------------------------------- /pages/auth/table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/auth/table.vue -------------------------------------------------------------------------------- /pages/change-password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/change-password.vue -------------------------------------------------------------------------------- /pages/forgot-password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/forgot-password.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/login.vue -------------------------------------------------------------------------------- /pages/otp-code.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/otp-code.vue -------------------------------------------------------------------------------- /pages/testing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/pages/testing.vue -------------------------------------------------------------------------------- /payloads/RequestFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/payloads/RequestFetch.js -------------------------------------------------------------------------------- /plugins/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/plugins/api.js -------------------------------------------------------------------------------- /plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/plugins/axios.js -------------------------------------------------------------------------------- /plugins/nuxt-client-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/plugins/nuxt-client-init.js -------------------------------------------------------------------------------- /plugins/vee-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/plugins/vee-validate.js -------------------------------------------------------------------------------- /services/fetchServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/services/fetchServices.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/static/v.png -------------------------------------------------------------------------------- /static/vuetify-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/static/vuetify-logo.svg -------------------------------------------------------------------------------- /store/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/store/fetch.js -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/store/index.js -------------------------------------------------------------------------------- /store/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/store/sidebar.js -------------------------------------------------------------------------------- /test/NuxtLogo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaihakiTanjung/starter-template-nuxt-vuetify-cms/HEAD/test/NuxtLogo.spec.js --------------------------------------------------------------------------------