frontend: add /login and /register forms
This commit is contained in:
parent
bea56f101a
commit
c4c49931a4
13 changed files with 3635 additions and 0 deletions
16
frontend/src/main.js
Normal file
16
frontend/src/main.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import {createApp} from 'vue'
|
||||
import {BootstrapIconsPlugin} from 'bootstrap-icons-vue';
|
||||
import App from './App.vue'
|
||||
|
||||
import './scss/toolshed.scss'
|
||||
|
||||
import router from './router'
|
||||
|
||||
import _nacl from 'js-nacl';
|
||||
|
||||
const app = createApp(App).use(BootstrapIconsPlugin);
|
||||
|
||||
_nacl.instantiate((nacl) => {
|
||||
window.nacl = nacl
|
||||
app.use(router).mount('#app')
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue