diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-02-03 09:35:25 +0100 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-02-03 09:35:25 +0100 |
commit | db2e1a4b62489e3ecc0ae4dc06981429f899de74 (patch) | |
tree | cf1e79f1a23a40682247f2bf50c0e16c996e6d75 /src/main.ts | |
parent | 0c897ae4f454c959d8fa688ff3e5724c740cda50 (diff) | |
download | wordle-frontend-db2e1a4b62489e3ecc0ae4dc06981429f899de74.tar.xz |
replace everything with vue's getting started example
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..53919d0 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,6 @@ +import { createApp } from "vue"; +import App from "./App.vue"; + +import "./assets/main.css"; + +createApp(App).mount("#app"); |