1
0
forked from PGL/Clyde
Clyde/frontend/src/login.js
Anthony Debucquoy 9850f2145c Fixing the login page availability
To access the login page you need login.html. Then this page loads the
login.js that generate the login.vue in the div#app (with the '#app')
2024-03-04 19:42:57 +01:00

7 lines
120 B
JavaScript

import './assets/main.css'
import { createApp } from 'vue'
import App from './Login.vue'
createApp(App).mount('#app')