02 Vue預設專案說明

Zzz1207發表於2024-10-08

1. node_modules

pnpm 安裝的第三方依賴

2. public

公共資源,存放網頁圖示等

3. src

開發程式碼存放位置

3.1 專案入口檔案 main.ts

import { createApp } from 'vue' // 引入vue
import './style.css' // 引入預設樣式
import App from './App.vue' // 引入頁面 App.Vue

createApp(App).mount('#app') // 建立一個Vue應用例項,並掛載到id為app的DOM節點上(在index.html中定義)

3.2 Vue頁面元件 App.vue

標準的Vue元件,由TypeScript指令碼、html頁面、css樣式三部分構成。

<!-- TypeScript指令碼 -->
<script setup lang="ts">
import HelloWorld from './components/HelloWorld.vue'
</script>

<!-- html頁面 -->
<template>
  <div>
    <a href="https://vitejs.dev" target="_blank">
      <img src="/vite.svg" class="logo" alt="Vite logo" />
    </a>
    <a href="https://vuejs.org/" target="_blank">
      <img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
    </a>
  </div>
  <HelloWorld msg="Vite + Vue" />
</template>

<!-- css樣式 -->
<style scoped>
.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vue:hover {
  filter: drop-shadow(0 0 2em #42b883aa);
}
</style>

3.3 DOM頁面 index.html

定義主網頁,在body中定義id為app的DOM節點,用於掛載main.ts中建立的Vue例項。

<!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>

相關文章