Skip to content

Commit 0814ed9

Browse files
authored
fix: refactor files tree in Application (#28)
1 parent 7196d8d commit 0814ed9

14 files changed

+747
-686
lines changed

package-lock.json

+4-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"prepare": "husky install"
1818
},
1919
"dependencies": {
20-
"@bytetrade/core": "0.3.1",
20+
"@bytetrade/core": "0.3.75",
2121
"axios": "^0.21.1",
2222
"uuid": "9.0.1"
2323
},

packages/web/src/App.vue

-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
<script>
66
import { defineComponent } from 'vue';
7-
import { useRouter } from 'vue-router';
87
import { useDevelopingApps } from './stores/app';
98
import { supportLanguages } from './i18n';
109
import { i18n } from './boot/i18n';
@@ -24,8 +23,6 @@ export default defineComponent({
2423
});
2524
},
2625
setup() {
27-
const router = useRouter();
28-
router.push({ path: '/home' });
2926
const appStore = useDevelopingApps();
3027
const host = window.location.origin;
3128
appStore.setUrl(host);

0 commit comments

Comments
 (0)