Refactor the List-specific screen into a data-driven, reusable viewer: - generic Blueprint type + shared LoadState machine + registry - vue-router: / (gallery) and /b/:slug (illustration) - BlueprintViewer renders any blueprint; specimens stay bespoke - add Grid blueprint (6 functions incl. Position) + GridSpecimen
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
import { createApp } from "vue"
|
|
import "./style.css"
|
|
import App from "./App.vue"
|
|
import { router } from "./router"
|
|
|
|
createApp(App).use(router).mount("#app")
|