add Vue UI [wip]
This commit is contained in:
parent
3d5656392e
commit
b47dfc579b
22 changed files with 2242 additions and 6 deletions
12
unwind-ui/src/main.ts
Normal file
12
unwind-ui/src/main.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { createApp } from "vue"
|
||||
import App from "./App.vue"
|
||||
|
||||
import MovieList from "./components/MovieList.vue"
|
||||
import UserLogin from "./components/UserLogin.vue"
|
||||
|
||||
import "bulma/css/bulma.css"
|
||||
|
||||
const app = createApp(App)
|
||||
app.component("movie-list", MovieList)
|
||||
app.component("user-login", UserLogin)
|
||||
app.mount("#app")
|
||||
Loading…
Add table
Add a link
Reference in a new issue