import { createApp } from "vue"; import Seen from "./Components/Seen" const app = createApp ({ components: { Seen, } }).mount('#vue-app')