forked from devsam/core
feat: wip, 도시정보
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { createApp } from 'vue'
|
||||
import { auto500px } from './util/auto500px';
|
||||
import { htmlReady } from './util/htmlReady';
|
||||
import { insertCustomCSS } from './util/customCSS';
|
||||
import PageCityInfo from './PageCityInfo.vue';
|
||||
import { installVue3Components } from './util/installVue3Components';
|
||||
auto500px();
|
||||
|
||||
declare const query: {
|
||||
cityID?: number
|
||||
};
|
||||
|
||||
htmlReady(() => {
|
||||
insertCustomCSS();
|
||||
});
|
||||
installVue3Components(createApp(PageCityInfo, query)).mount('#app');
|
||||
Reference in New Issue
Block a user