Initial commit for WC-SPC project

This commit is contained in:
meswork
2026-05-27 13:59:56 +08:00
commit 120a18a651
1043 changed files with 255289 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<template>
<div id="app">
<router-view v-if="isRouterAlive"/>
</div>
</template>
<script>
export default {
name: 'App',
provide() {
return {
reload: this.reload
}
},
data() {
return {
isRouterAlive: true
}
},
methods: {
reload() {
this.isRouterAlive = false
this.$nextTick(function() {
this.isRouterAlive = true
})
}
}
}
</script>