mirror of
https://github.com/TaterTotterson/microWakeWord-Trainer-Nvidia-Docker.git
synced 2026-08-12 07:55:33 -06:00
Release NVIDIA WakeWord Trainer v22
This commit is contained in:
11
frontend/src/main.ts
Normal file
11
frontend/src/main.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user