Files
vue-flow/packages/resize-rotate-node/example/main.ts
2022-05-22 22:46:47 +02:00

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')