From d0e03198c8dad8e91b7619e03a39f39ff5a258be Mon Sep 17 00:00:00 2001 From: u014644284 Date: Thu, 19 Oct 2023 09:01:31 +0800 Subject: [PATCH] Auto Commit --- .inscode | 4 ++++ src/App.vue | 2 +- src/components/HelloWorld.vue | 4 ++-- src/components/TheWelcome.vue | 15 ++------------- src/main.js | 3 ++- 5 files changed, 11 insertions(+), 17 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/src/App.vue b/src/App.vue index 633a5df..c3085d6 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,7 +8,7 @@ import TheWelcome from './components/TheWelcome.vue'
- +
diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue index 1b8faac..740524b 100644 --- a/src/components/HelloWorld.vue +++ b/src/components/HelloWorld.vue @@ -31,13 +31,13 @@ h3 { .greetings h1, .greetings h3 { - text-align: center; + text-align: left; } @media (min-width: 1024px) { .greetings h1, .greetings h3 { - text-align: left; + text-align: center; } } diff --git a/src/components/TheWelcome.vue b/src/components/TheWelcome.vue index d3d2e7a..662df81 100644 --- a/src/components/TheWelcome.vue +++ b/src/components/TheWelcome.vue @@ -14,9 +14,7 @@ import SupportIcon from './icons/IconSupport.vue' - Vue’s - official documentation - provides you with all information you need to get started. + @@ -25,16 +23,7 @@ import SupportIcon from './icons/IconSupport.vue' - This project is served and bundled with - Vite. The recommended IDE - setup is VSCode + - Volar. If you need to test - your components and web pages, check out - Cypress and - Cypress Component Testing. - +
More instructions are available in README.md. diff --git a/src/main.js b/src/main.js index 90e6400..ad31741 100644 --- a/src/main.js +++ b/src/main.js @@ -3,4 +3,5 @@ import App from './App.vue' import './assets/main.css' -createApp(App).mount('#app') +const app = createApp(App) +app.mount('#app') -- GitLab