feat: implement workspaces

This commit is contained in:
Braks
2022-04-04 21:42:48 +02:00
parent cc96739c38
commit cd817b7f53
153 changed files with 8970 additions and 1191 deletions
-7
View File
@@ -1,17 +1,10 @@
import { createApp } from 'vue'
import './index.css'
import { DraggablePlugin } from '@braks/revue-draggable'
import App from './App.vue'
import { router } from './router'
/* import the required styles */
import '../src/style.css'
/* import the default theme (optional) */
import '../src/theme-default.css'
const app = createApp(App)
app.config.performance = true
app.use(router)
app.use(DraggablePlugin)
app.mount('#root')