Skip to content

Commit

Permalink
1.0.0 更新
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceTimee committed Dec 22, 2023
1 parent 67111fa commit d16a009
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 38 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
Expand Down Expand Up @@ -47,7 +47,7 @@
"typescript": "~5.2.2",
"vite": "^5.0.10",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.25"
"vue-tsc": "^1.8.26"
},
"type": "module"
}
64 changes: 32 additions & 32 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/pages/AboutPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
>Agreement: ona-dop-docs.spacetimee.xyz/agreement</v-list-item
>

<v-list-item value="Version" disabled>Version: 0.0.4 (Demo)</v-list-item>
<v-list-item value="Version" disabled>Version: 1.0.0</v-list-item>
</v-list>
</template>

Expand Down
4 changes: 2 additions & 2 deletions src/plugins/router/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createRouter, createWebHashHistory } from 'vue-router'
import HomePage from '../../pages/HomePage.vue'
import AboutPage from '../../pages/AboutPage.vue'
import HomePage from '@/pages/HomePage.vue'
import AboutPage from '@/pages/AboutPage.vue'

export default createRouter({
history: createWebHashHistory(import.meta.env.BASE_URL),
Expand Down
1 change: 0 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vuetify from 'vite-plugin-vuetify'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
Expand Down

0 comments on commit d16a009

Please sign in to comment.