stash
This commit is contained in:
parent
c02b1588f2
commit
a83083d0eb
22 changed files with 1835 additions and 0 deletions
19
frontend/src/main.js
Normal file
19
frontend/src/main.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import {createApp} from 'vue'
|
||||
//import { BootstrapVue, BootstrapVueIcons } from 'bootstrap-vue'
|
||||
import { BootstrapIconsPlugin } from 'bootstrap-icons-vue';
|
||||
import App from './App.vue'
|
||||
|
||||
import './assets/css/toolshed.css'
|
||||
import './assets/js/app.js'
|
||||
|
||||
import router from './router'
|
||||
import store from './store';
|
||||
|
||||
import _nacl from 'js-nacl';
|
||||
|
||||
const app = createApp(App).use(router).use(store).use(BootstrapIconsPlugin);
|
||||
|
||||
_nacl.instantiate((nacl) => {
|
||||
window.nacl = nacl
|
||||
app.mount('#app')
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue