mirror of
https://github.com/TaterTotterson/microWakeWord-Trainer-Nvidia-Docker.git
synced 2026-08-12 07:55:33 -06:00
12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import { createApp } from "vue";
|
|
import TrainerApp from "./TrainerApp.vue";
|
|
import "./trainer.css";
|
|
|
|
const root = document.getElementById("trainer-app");
|
|
|
|
if (!root) {
|
|
throw new Error("Missing #trainer-app mount point");
|
|
}
|
|
|
|
createApp(TrainerApp).mount(root);
|