TypeScript and Vue
簡介
Vue.js 可以使用 JavaScript(JS) 和 TypeScript(TS)。TypeScript 是 JavaScript 的超集,增加了靜態類型檢查和其他高級功能。使用 TypeScript 可以提高代碼的可讀性和可維護性,並減少運行時錯誤。
TypeScript
- Static Type Checking: TypeScript allows you to check for type errors at compile time, which helps in early detection and fixing of errors.
- Interfaces and Classes: TypeScript supports interfaces and classes, making the code more structured and scalable.
- Modules and Namespaces: TypeScript supports modules and namespaces, which help in organizing code and avoiding naming conflicts.
TL;DR
.ts
是.js
的 superset 加上 static types (like.scss
to.css
)- Compiles to plain JavaScript, which can run anywhere JavaScript runs
Vue.js (JavaScript 現代前端框架之一 )
- 前端框架包含先寫好的 ( 常見、常用的功能模組 )
html
,css
,js
供開發者隨時快速調用 - 大量可重用組件 (microservices)
- 前端框架包含先寫好的 ( 常見、常用的功能模組 )
從安裝到開始
TypeScript
|
|
Vue
|
|
常見的結構
Vue.js
/src
/assets
/components
/router
/store
/views
App.vue
main.js
/src
:主要的源代碼目錄。/assets
:靜態資源,如圖片、樣式等。/components
:Vue 組件。/router
:路由配置。/store
:狀態管理(如 Vuex)。/views
:視圖組件。App.vue
:主應用組件。main.js
:應用入口文件。
React
/src
/assets
/components
/containers
/redux
/utils
App.js
index.js
/src
:主要的源代碼目錄。/assets
:靜態資源。/components
:無狀態的展示組件。/containers
:有狀態的容器組件。/redux
:Redux 狀態管理。/utils
:工具函數。App.js
:主應用組件。index.js
:應用入口文件。
Angular
/src
/app
/components
/services
/models
/modules
/shared
app.component.ts
app.module.ts
/assets
/environments
main.ts
index.html
/src
:主要的源代碼目錄。/app
:應用的主要代碼。/components
:Angular 組件。/services
:服務。/models
:數據模型。/modules
:模塊。/shared
:共享組件和服務。app.component.ts
:主應用組件。app.module.ts
:主應用模塊。
/assets
:靜態資源。/environments
:環境配置。main.ts
:應用入口文件。index.html
:主 HTML 文件。
範例
基礎 Types 與 Interfaces
|
|
創建物件
創建 Objects that conform to the User
Interface
|
|
功能呼叫
Using the Interface with Functions
|
|
使用 Interfaces 的好處
( 可以在
compiletime
就找到錯誤,不必等到runtime
)
確保程式功能得以繼承或指定輸入結構
案例一
|
|
案例二
|
|
TypeScript 在除錯上更具優勢
JavaScript 錯誤範例: runtime error
|
|
TypeScript 錯誤範例: compiletime error
|
|
甚至在 IDE 上開發時就能先看到提醒 (未指定 types
時)
指定 types
後,在編譯前 IDE 上也會先出現錯誤
基礎 Vue 概念
Use Vue directly from a CDN via a script tag <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
:
|
|
ES Module
|
|
We can teach the browser where to locate the vue
import by using Import Maps:
|
|
Single-File Components
.vue
文件通常由三個部分組成:<template>
、<script>
和 <style>
。這些部分分別負責不同的功能:
<template>
:這部分用於定義組件的 HTML 結構。你可以在這裡使用 Vue 的模板語法來綁定數據和處理事件。<script>
:這部分用於定義組件的邏輯和數據。你可以在這裡導入其他模塊、定義組件的數據、方法和生命周期鉤子等。<style>
(可選):這部分用於定義組件的樣式。你可以在這裡編寫 CSS 或使用預處理器如 SCSS、LESS 等來定義樣式。 以下是一個簡單的 .vue 文件範例:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<template> <div> <h1>{{ title }}</h1> <button @click="changeTitle">改變標題</button> </div> </template> <script> export default { data() { return { title: 'Hello Vue!' } }, methods: { changeTitle() { this.title = '標題已改變' } } } </script> <style scoped> h1 { color: blue; } </style>
在這個範例中,
<template>
部分定義了一個包含標題和按鈕的簡單結構;<script>
部分定義了組件的數據和方法;<style>
部分定義了標題的樣式,並使用了scoped
屬性來確保樣式只應用於當前組件。
快速開始
Prerequisites: Install Node.js version 18.3 or higher
依序執行 cml
:
npm create vue@latest
接著依序依照需要選擇以下初始化條件
|
|
成功後進到專案目錄下載 pkg
後即可開始開發
|
|