Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Change Vuetify link to Vuetify2.
  • Loading branch information
logue committed Aug 3, 2023
1 parent fbdda1e commit 3e7d950
Show file tree
Hide file tree
Showing 4 changed files with 374 additions and 204 deletions.
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://json.schemastore.org/package.json",
"name": "vite-vue2-vuetify-ts-starter",
"description": "Vue2 Vuetify TypeScript Startar project for Vite.",
"version": "1.5.9",
"version": "1.5.10",
"license": "MIT",
"type": "module",
"private": true,
Expand Down Expand Up @@ -53,21 +53,21 @@
"@rushstack/eslint-patch": "^1.3.2",
"@tsconfig/node-lts": "^18.12.3",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.4.5",
"@types/node": "^20.4.6",
"@types/webfontloader": "^1.6.35",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^6.2.0",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-vue2": "^2.2.0",
"@vitest/coverage-c8": "^0.33.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^1.3.5",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.45.0",
"eslint": "^8.46.0",
"eslint-config-standard-with-typescript": "latest",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
Expand All @@ -93,12 +93,12 @@
"stylelint-order": "^6.0.3",
"typescript": "latest",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.7",
"vite": "^4.4.8",
"vite-plugin-checker": "^0.6.1",
"vitest": "^0.33.0",
"vitest": "^0.34.1",
"vue-eslint-parser": "^9.3.1",
"vue-template-compiler": "^2.7.14",
"vue-tsc": "^1.8.6",
"vue-tsc": "^1.8.8",
"vuetify2-component-types": "^2.6.8"
},
"husky": {
Expand All @@ -114,6 +114,7 @@
"resolutions": {
"http-cache-semantics": "^4.1.1",
"json5": "^2.2.3",
"semver": "^7.5.2",
"yaml": "^2.2.2"
},
"stackblitz": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/HelloWorld.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</a>
</v-col>
<v-col>
<a href="https://vuetifyjs.com/" target="_blank">
<a href="https://v2.vuetifyjs.com/" target="_blank">
<v-img
:src="vuetifyLogo"
class="mx-auto logo vuetify"
Expand Down
5 changes: 3 additions & 2 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@

<script lang="ts">
import { defineComponent, watch, type SetupContext } from 'vue';
// import { useStore } from '@logue/vue2-helpers/vuex';
import { useRoute } from 'vue-router/composables';
import HelloWorld from '@/components/HelloWorld.vue';
import logo from '@/assets/vuetify.svg';
import HelloWorld from '@/components/HelloWorld.vue';
/** Home Component */
export default defineComponent({
Expand Down Expand Up @@ -49,7 +50,7 @@ export default defineComponent({
name: 'Vite Vue2 TypeScript Startar',
url: 'https://github.com/logue/vite-vue2-vuetify-ts-starter',
description: 'Vite Vue2 TypeScript Demo Page',
logo: logo,
logo,
},
null,
2
Expand Down
Loading

0 comments on commit 3e7d950

Please sign in to comment.