From f5f020b120d5eab45275651c11fd8a46c6657aee Mon Sep 17 00:00:00 2001 From: zhaochen1127 Date: Sun, 3 Sep 2023 22:57:10 +0800 Subject: [PATCH] Auto Commit --- .inscode | 4 ++ index.html | 33 +++++++---- package.json | 1 + src/App.vue | 162 +++++++++++++++++++++++++++++++++++++++------------ src/main.js | 1 - 5 files changed, 150 insertions(+), 51 deletions(-) diff --git a/.inscode b/.inscode index 70c7853..9fec957 100644 --- a/.inscode +++ b/.inscode @@ -1,4 +1,5 @@ run = "npm i && npm run dev" +language = "node" [deployment] build = "npm i && npm run build" @@ -8,3 +9,6 @@ run = "npm run preview" PATH = "/root/${PROJECT_DIR}/.config/npm/node_global/bin:/root/${PROJECT_DIR}/node_modules/.bin:${PATH}" XDG_CONFIG_HOME = "/root/.config" npm_config_prefix = "/root/${PROJECT_DIR}/.config/npm/node_global" + +[debugger] +program = "main.js" diff --git a/index.html b/index.html index 030a6ff..785d6c1 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,22 @@ - + - - - - - Vite App - - -
- - - + + + + + + CESIUM + + + + + +
+ + + + \ No newline at end of file diff --git a/package.json b/package.json index aa1c7de..cc2472e 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "preview": "vite preview --port 4173" }, "dependencies": { + "cesium": "^1.109.0", "guess": "^1.0.2", "vue": "^3.2.37" }, diff --git a/src/App.vue b/src/App.vue index 633a5df..344baa9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,47 +1,133 @@ - - + diff --git a/src/main.js b/src/main.js index 90e6400..8461739 100644 --- a/src/main.js +++ b/src/main.js @@ -1,6 +1,5 @@ import { createApp } from 'vue' import App from './App.vue' -import './assets/main.css' createApp(App).mount('#app') -- GitLab