1
2
3
4
5
6
7
8
9
10
11
12
13
| import App from './App'
| import navbar from './components/navbar/navbar.vue'
| import pointNavbar from './components/pointNavbar/pointNavbar.vue'
| import DaTree from '@/components/da-tree/index.vue'
| import { createSSRApp } from 'vue'
|
| export function createApp() {
| const app = createSSRApp(App)
| app.component('navbar', navbar).component('pointNavbar', pointNavbar).component('DaTree', DaTree)
| return {
| app
| }
| }
|
|