Skip to content

Commit

Permalink
nit #209
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Feb 28, 2025
1 parent 0192112 commit d089f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arches_lingo/media/js/views/root.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import createVueApplication from 'arches/arches/app/media/js/utils/create-vue-ap

import { createRouter, createWebHistory } from 'vue-router';

import LingoApp from '@/arches_lingo/ArchesLingo.vue';
import ArchesLingo from '@/arches_lingo/ArchesLingo.vue';
import { routes } from '@/arches_lingo/routes.ts';

const router = createRouter({
history: createWebHistory(),
routes,
});

createVueApplication(LingoApp).then(vueApp => {
createVueApplication(ArchesLingo).then(vueApp => {
vueApp.use(router);
vueApp.mount('#lingo-mounting-point');
});

0 comments on commit d089f87

Please sign in to comment.