mirror of
https://github.com/sky22333/hubproxy.git
synced 2026-08-05 03:24:57 +08:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { createApp } from 'vue'
|
|
import './style.css'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
if ('scrollRestoration' in history) {
|
|
history.scrollRestoration = 'manual'
|
|
}
|
|
|
|
createApp(App).use(router).mount('#app')
|