diff options
author | Remy Raes <contact@remyraes.com> | 2022-09-20 23:32:20 +0200 |
---|---|---|
committer | Remy Raes <contact@remyraes.com> | 2022-09-20 23:32:20 +0200 |
commit | 2e622c0989f6abe35e6d8bbd20d523a37e87d923 (patch) | |
tree | d18f89016cadffb27bcdd07199f1eceaadb6b00b /src-vue/index.html | |
parent | f9e6bf91e6d0f5928e036350c09aed1d35fae36d (diff) | |
download | FlightCore-2e622c0989f6abe35e6d8bbd20d523a37e87d923.tar.gz FlightCore-2e622c0989f6abe35e6d8bbd20d523a37e87d923.zip |
build: add Vue app skeleton
Diffstat (limited to 'src-vue/index.html')
-rw-r--r-- | src-vue/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src-vue/index.html b/src-vue/index.html new file mode 100644 index 00000000..143557b5 --- /dev/null +++ b/src-vue/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <link rel="icon" type="image/svg+xml" href="/vite.svg" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Vite + Vue + TS</title> + </head> + <body> + <div id="app"></div> + <script type="module" src="/src/main.ts"></script> + </body> +</html> |