Some form generator stuff

This commit is contained in:
2025-08-21 19:33:43 -04:00
parent 072c96877e
commit f399129846
5 changed files with 152 additions and 0 deletions

View File

@@ -5,10 +5,15 @@ import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
import FormCheckbox from './components/form/FormCheckbox.vue'
import FormInput from './components/form/FormInput.vue'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.component("FormInput", FormInput)
app.component("FormCheckbox", FormCheckbox)
app.mount('#app')