sf-aba / app.js
cloudjumbo's picture
Add 6 files
b41999b verified
raw
history blame contribute delete
149 Bytes
import { createApp } from "vue";
import EventList from "./components/EventList.vue";
createApp({}).component("event-list", EventList).mount("#app");