This commit is contained in:
j3d1 2023-05-16 01:10:11 +02:00
parent 06f7c515ef
commit b98c368540
4 changed files with 20 additions and 13 deletions

View file

@ -11,9 +11,9 @@ import store from './store';
import _nacl from 'js-nacl';
const app = createApp(App).use(router).use(store).use(BootstrapIconsPlugin);
const app = createApp(App).use(store).use(BootstrapIconsPlugin);
_nacl.instantiate((nacl) => {
window.nacl = nacl
app.mount('#app')
app.use(router).mount('#app')
});