Files
vue-flow/packages/pathfinding-edge/example/main.ts

8 lines
138 B
TypeScript

import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
app.config.performance = true
app.mount('#root')