Skip to content

Commit

Permalink
fix(ui): router plugin in ui (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
craciuncezar committed Mar 23, 2022
1 parent 18c1565 commit c9f53f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/client/main.ts
@@ -1,11 +1,11 @@
import { createApp } from 'vue'
import { directives, plugins } from './global-setup'
import App from './App.vue'
import { directives, plugins } from './global-setup'

const app = createApp(App)

plugins.forEach((plugin) => {
app.use(plugin)
app.use(plugin())
})

Object.entries(directives).forEach(([name, directive]) => {
Expand Down

0 comments on commit c9f53f2

Please sign in to comment.