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