import { createApp } from "vue";
import Lisa from "./AppLisa.vue";

const lisa = createApp(Lisa);

lisa.mount("#root_index");