前言:哈嘍,大家好,今天給大家分享一篇文章!并提供具體代碼幫助大家深入理解,徹底掌握!創作不易,如果能幫助到大家或者給大家一些靈感和啟發,歡迎收藏+關注哦 💕
目錄
- DeepSeek 助力 Vue 開發:打造絲滑的二維碼生成(QR Code)
- 📚前言
- 📚頁面效果
- 📚指令輸入
- 屬性定義
- 基本內容屬性
- 樣式屬性
- 其他屬性
- 事件定義
- 其他
- 性能優化
- 兼容性
- 可訪問性
- 擴展性
- 📘組件代碼
- 📚代碼測試
- 📚整理后主要代碼
- 📘定義組件 \src\components\QRCode\QRCode.vue
- 📘調用 \src\views\QRCodeView.vue
- 📚測試代碼正常跑通,附其他基本代碼
- 📘編寫路由 src\router\index.js
- 📘編寫展示入口 src\App.vue
- 📚頁面效果
- 📚相關文章
📚📗📕📘📖🕮💡📝🗂???🛠?💻🚀🎉🏗?🌐🖼?🔗📊👉🔖??🌟🔐??·正文開始
??·🎥😊🎓📩😺🌈🤝🤖📜📋🔍?🧰?📄📢📈 🙋0??1??2??3??4??5??6??7??8??9??🔟🆗*??#??
DeepSeek 助力 Vue 開發:打造絲滑的二維碼生成(QR Code)
📚前言
日活用戶數方面,DeepSeek 的增長勢頭同樣強勁。國內 AI 產品榜的最新統計數據顯示,DeepSeek 應用在上線僅 20 天后,其日活躍用戶數(DAU)迅速突破 2000 萬大關,具體數字高達 2215 萬 。這一成績不僅彰顯了 DeepSeek 強大的用戶吸引力,也進一步證明了 AI 技術在當今社會的廣泛應用和巨大潛力。到 2 月 1 日,DeepSeek 日活躍用戶突破 3000 萬大關,成為史上最快達到這一里程碑的應用 。其日活躍用戶數已達到 ChatGPT 日活躍用戶數的 41.6%,并成功超越了豆包的日活躍用戶數 1695 萬 。在上線僅 21 天后,DeepSeek 的月活躍用戶數(MAU)便達到了 3370 萬,使其在全球 AI 產品月活總榜上成功躋身前四 。
DeepSeek 的出現,對美國科技股和全球 AI 市場產生了深遠的影響。在美股市場,1 月 27 日,美股 AI、芯片股重挫,英偉達收盤大跌超過 17%,單日市值蒸發 5890 億美元,創下美國股市歷史上最高紀錄 。這一現象反映出 DeepSeek 的崛起對美國科技巨頭的市場地位構成了挑戰,引發了投資者對科技股未來前景的擔憂。
📚頁面效果
📚指令輸入
已經創建好了一個基于Vue3的組合式API的項目(Composition API),并能正常運行起來,請幫我用 Vue3的組合式API(Composition API) 生成一個 二維碼生成(QR Code) 的功能組件,所有代碼都保存在components/QRCode 下的文件夾中。功能組件的script標簽中只有setup屬性,使用普通 JavaScript 實現,不使用TypeScript。
功能要有,如下屬性:
屬性定義
基本內容屬性
value
:這是最核心的屬性,用于指定要編碼到二維碼中的數據,比如文本、鏈接等。二維碼的生成就是基于這個值來進行的,它可以是字符串類型,用戶需要根據實際需求傳入相應的內容。type
:指定二維碼的糾錯級別。糾錯級別決定了二維碼在部分損壞的情況下仍能被正確掃描的能力,常見的取值有L
(低,7%糾錯)、M
(中,15%糾錯)、Q
(高,25%糾錯)、H
(最高,30%糾錯)。
樣式屬性
size
:用于控制二維碼的尺寸大小,單位可以是像素(px)。它決定了二維碼在頁面上顯示的物理大小,方便根據不同的布局需求進行調整。colorDark
:設置二維碼中深色模塊(通常是黑色)的顏色。可以使用十六進制顏色碼、RGB 或 RGBA 等格式來指定顏色,滿足不同的設計風格。colorLight
:設置二維碼中淺色模塊(通常是白色)的顏色,同樣可以使用十六進制顏色碼、RGB 或 RGBA 等格式。margin
:定義二維碼周圍的空白邊距,單位為像素。適當的邊距可以使二維碼在頁面上更加美觀,也有助于提高掃描的成功率。
其他屬性
version
:手動指定二維碼的版本號。二維碼版本從 1 到 40,版本越高,所能容納的數據量就越大。一般情況下不需要手動指定,組件會根據傳入的數據自動選擇合適的版本,但在某些特殊需求下可以使用該屬性。
事件定義
@generated
:當二維碼成功生成時觸發該事件,事件回調函數中可以獲取到生成的二維碼對象或者相關的狀態信息,方便開發者在二維碼生成后進行后續的操作,比如將二維碼保存為圖片等。@error
:在二維碼生成過程中出現錯誤時觸發該事件,事件回調函數會攜帶錯誤信息,開發者可以根據錯誤信息進行相應的處理,如提示用戶重新輸入數據等。
其他
性能優化
- 采用虛擬列表技術:如果在一個頁面中需要生成多個二維碼,使用虛擬列表可以只渲染當前可見區域的二維碼,減少不必要的渲染開銷,提高頁面性能。
- 緩存機制:對于相同數據生成的二維碼進行緩存,避免重復生成,提高生成效率。
兼容性
- 確保組件在不同瀏覽器和設備上都能正常顯示和使用,進行充分的兼容性測試,特別是在移動設備上,要考慮不同屏幕分辨率和瀏覽器內核的差異。
可訪問性
- 為二維碼添加適當的
alt
屬性,當二維碼無法正常顯示時,屏幕閱讀器可以讀取該屬性內容,為視覺障礙用戶提供必要的信息。
擴展性
- 提供擴展接口,允許開發者自定義二維碼的生成算法或者樣式處理邏輯,方便根據不同的業務需求進行定制化開發。
你有更好的建議也可以添加,要注明。組件定義好后給出5個及以上的調用示例。
下面是現有目錄
vueAndDeepseek/
├── src/ # 源代碼目錄
│ ├── assets/ # 靜態資源
│ │ ├── base.css
│ │ ├── main.css
│ │ └── logo.svg
│ ├── components/ # 組件目錄
│ │ ├── HelloWorld.vue
│ │ ├── TheWelcome.vue
│ │ ├── WelcomeItem.vue
│ │ ├── Progress/
│ │ │ └── Progress.vue
│ │ ├── Accordion/
│ │ ├── BackToTop/
│ │ ├── Card/
│ │ ├── InfiniteScroll/
│ │ ├── Notification/
│ │ ├── Timeline/
│ │ ├── Switch/
│ │ ├── Tabs/
│ │ ├── Sidebar/
│ │ ├── Breadcrumbs/
│ │ ├── MasonryLayout/
│ │ ├── Rating/
│ │ ├── ColorPicker/
│ │ ├── RightClickMenu/
│ │ ├── RangePicker/
│ │ ├── Navbar/
│ │ ├── FormValidation/
│ │ ├── CopyToClipboard/
│ │ ├── ClickAnimations/
│ │ ├── ThumbnailList/
│ │ ├── KeyboardShortcuts/
│ │ ├── CommentSystem/
│ │ ├── QRCode/
│ │ ├── DatePicker/
│ │ └── icons/
│ ├── router/ # 路由配置
│ │ └── index.js
│ ├── stores/ # Pinia 狀態管理
│ │ └── counter.js
│ ├── views/ # 頁面組件
│ │ ├── ProgressView.vue
│ │ ├── TabsView.vue
│ │ ├── SwitchView.vue
│ │ ├── TimelineView.vue
│ │ ├── NotificationView.vue
│ │ ├── CardView.vue
│ │ ├── InfiniteScrollView.vue
│ │ ├── BackToTopView.vue
│ │ ├── AccordionView.vue
│ │ ├── SidebarView.vue
│ │ ├── BreadcrumbsView.vue
│ │ ├── MasonryLayoutView.vue
│ │ ├── RatingView.vue
│ │ ├── ColorPickerView.vue
│ │ ├── RightClickMenuView.vue
│ │ ├── RangePickerView.vue
│ │ ├── NavbarView.vue
│ │ ├── FormValidationView.vue
│ │ ├── CopyToClipboardView.vue
│ │ ├── ClickAnimationsView.vue
│ │ ├── ThumbnailListView.vue
│ │ ├── KeyboardShortcutsView.vue
│ │ ├── CommentSystemView.vue
│ │ ├── QRCodeView.vue
│ │ ├── DatePickerView.vue
│ │ └── AboutView.vue
│ ├── App.vue # 根組件
│ └── main.js # 應用入口
├── public/ # 公共資源目錄
├── index.html # HTML 模板
├── package.json # 項目配置
├── vite.config.js # Vite 配置
└── node_modules/ # 依賴包目錄
📘組件代碼
下面按照您的要求創建二維碼組件:
components/QRCode/QRCode.vue
<template><div class="qr-code"><div ref="qrCodeRef"></div><span class="sr-only">QR Code: {{ value }}</span></div>
</template><script setup>
import { ref, watch, onMounted, onBeforeUnmount } from 'vue'
import QRCode from 'qrcodejs2'const props = defineProps({value: {type: String,required: true},type: {type: String,default: 'H',validator(value) {return ['L', 'M', 'Q', 'H'].includes(value.toUpperCase())}},size: {type: Number,default: 200},colorDark: {type: String,default: '#000000'},colorLight: {type: String,default: '#ffffff'},margin: {type: Number,default: 4},version: {type: Number,default: undefined}
})const emit = defineEmits(['generated', 'error'])const qrCodeRef = ref(null)
let qrCodeInstance = null
const cache = new Map()const generateCacheKey = () => {return JSON.stringify({value: props.value,type: props.type,size: props.size,colorDark: props.colorDark,colorLight: props.colorLight,margin: props.margin,version: props.version})
}const generateQRCode = () => {if (!props.value) {emit('error', new Error('QR code value is required'))return}const cacheKey = generateCacheKey()if (cache.has(cacheKey)) {updateFromCache(cache.get(cacheKey))return}try {if (qrCodeInstance) {qrCodeInstance.clear()qrCodeInstance = null}qrCodeInstance = new QRCode(qrCodeRef.value, {text: props.value,width: props.size,height: props.size,colorDark: props.colorDark,colorLight: props.colorLight,correctLevel: QRCode.CorrectLevel[props.type.toUpperCase()],cellspacing: props.margin,version: props.version})observeQRGeneration(cacheKey)} catch (error) {emit('error', error)}
}const observeQRGeneration = (cacheKey) => {const observer = new MutationObserver(() => {const img = qrCodeRef.value.querySelector('img')const canvas = qrCodeRef.value.querySelector('canvas')if (img) {img.onload = () => handleSuccess(img.src, cacheKey)img.alt = `QR Code: ${props.value.substring(0, 50)}`} else if (canvas) {handleSuccess(canvas.toDataURL(), cacheKey)}observer.disconnect()})observer.observe(qrCodeRef.value, { childList: true })
}const handleSuccess = (dataUrl, cacheKey) => {cache.set(cacheKey, dataUrl)emit('generated', dataUrl)
}const updateFromCache = (dataUrl) => {qrCodeRef.value.innerHTML = `<img src="${dataUrl}" alt="QR Code: ${props.value.substring(0, 50)}" style="width: ${props.size}px; height: ${props.size}px">`emit('generated', dataUrl)
}onMounted(generateQRCode)
onBeforeUnmount(() => qrCodeInstance?.clear())watch(() => generateCacheKey(), generateQRCode)
</script><style scoped>
.sr-only {position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;clip: rect(0, 0, 0, 0);border: 0;
}.qr-code {display: inline-block;line-height: 0;
}
</style>
調用示例 (views/QRCodeView.vue):
<template><div class="examples"><!-- 基礎用法 --><QRCode value="https://deepseek.com" /><!-- 自定義顏色和尺寸 --><QRCodevalue="https://deepseek.com":size="250"color-dark="#2c3e50"color-light="#ecf0f1"/><!-- 帶邊距和事件處理 --><QRCodevalue="Event Example":margin="10"@generated="handleGenerated"@error="handleError"/><!-- 指定版本和糾錯級別 --><QRCodevalue="Version Control Example":version="5"type="Q"/><!-- 動態數據綁定 --><input v-model="dynamicValue" placeholder="輸入二維碼內容"><QRCode :value="dynamicValue" /></div>
</template><script setup>
import { ref } from 'vue'
import QRCode from '@/components/QRCode/QRCode.vue'const dynamicValue = ref('')
const handleGenerated = (dataUrl) => {console.log('生成成功:', dataUrl)
}
const handleError = (error) => {console.error('生成失敗:', error)
}
</script><style scoped>
.examples {display: grid;gap: 2rem;padding: 2rem;
}input {padding: 0.5rem;border: 1px solid #ccc;border-radius: 4px;width: 300px;
}
</style>
組件特點:
- 使用qrcodejs2實現二維碼生成
- 添加了緩存機制提升性能
- 支持響應式屬性變化
- 完善的錯誤處理和事件通知
- 可訪問性優化(屏幕閱讀器支持)
- 自動清理舊實例避免內存泄漏
- MutationObserver監聽DOM變化確保事件觸發
- 類型校驗和參數驗證
擴展建議:
- 可以添加二維碼下載功能
- 支持二維碼Logo疊加
- 添加loading狀態提示
- 支持掃描結果解碼預覽
- 添加二維碼有效性驗證功能
📚代碼測試
會有一個報錯
TypeError: Cannot read properties of undefined (reading '_android')
📚整理后主要代碼
📘定義組件 \src\components\QRCode\QRCode.vue
<template><div class="qr-code"><QrcodeVue:value="value":size="size":level="type":background="colorLight":foreground="colorDark":margin="margin":version="version"@render="handleGenerated"@renderError="handleError"/><span class="sr-only">QR Code: {{ value }}</span></div>
</template><script setup>
import {onMounted} from 'vue'
import QrcodeVue from 'qrcode.vue'const props = defineProps({value: {type: String,required: true},type: {type: String,default: 'H',validator(value) {return ['L', 'M', 'Q', 'H'].includes(value.toUpperCase())}},size: {type: Number,default: 200},colorDark: {type: String,default: '#000000'},colorLight: {type: String,default: '#ffffff'},margin: {type: Number,default: 4},version: {type: Number,default: undefined}
})const emit = defineEmits(['generated', 'error'])const handleGenerated = (dataUrl) => {emit('generated', dataUrl)
}const handleError = (error) => {emit('error', error)
}onMounted(() => {if (!props.value) {emit('error', new Error('QR code value is required'))}
})
</script><style scoped>
.sr-only {position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;clip: rect(0, 0, 0, 0);border: 0;
}.qr-code {display: inline-block;line-height: 0;
}
</style>
📘調用 \src\views\QRCodeView.vue
<template><div class="qrcode-demo"><h2>二維碼生成示例</h2><!-- 示例1:基礎用法 --><section class="demo-section"><h3>基礎用法</h3><div class="demo-box"><QRCode value="https://deepseek.com" /><div class="description">默認配置的二維碼</div></div></section><!-- 示例2:自定義樣式 --><section class="demo-section"><h3>自定義樣式</h3><div class="demo-box"><QRCodevalue="https://deepseek.com":size="250"color-dark="#2c3e50"color-light="#ecf0f1"/><div class="description">自定義大小和顏色</div></div></section><!-- 示例3:帶事件處理 --><section class="demo-section"><h3>事件處理</h3><div class="demo-box"><QRCodevalue="Event Example":margin="10"@generated="handleGenerated"@error="handleError"/><div class="status-message" :class="{ error: hasError }">{{ statusMessage }}</div></div></section><!-- 示例4:糾錯級別 --><section class="demo-section"><h3>糾錯級別</h3><div class="demo-box"><QRCodevalue="Error Correction Example"type="Q"/><div class="description">使用 Q 級別糾錯(約25%)</div></div></section><!-- 示例5:動態內容 --><section class="demo-section"><h3>動態內容</h3><div class="demo-box"><div class="input-group"><inputv-model="dynamicValue"placeholder="輸入二維碼內容"class="demo-input"></div><QRCode:value="dynamicValue || '請輸入內容'":size="200"/></div></section></div>
</template><script setup>
import { ref } from 'vue'
import QRCode from '@/components/QRCode/QRCode.vue'const dynamicValue = ref('')
const statusMessage = ref('')
const hasError = ref(false)const handleGenerated = (dataUrl) => {statusMessage.value = '二維碼生成成功!'hasError.value = falseconsole.log('QR Code generated:', dataUrl)
}const handleError = (error) => {statusMessage.value = '生成失敗:' + error.messagehasError.value = trueconsole.error('QR Code generation failed:', error)
}
</script><style scoped>
.qrcode-demo {padding: 20px;max-width: 800px;margin: 0 auto;
}h2 {color: #2c3e50;text-align: center;margin-bottom: 30px;
}.demo-section {margin-bottom: 30px;padding: 20px;border: 1px solid #ebeef5;border-radius: 8px;background: white;box-shadow: 0 2px 12px 0 rgba(0,0,0,0.05);
}h3 {color: #2c3e50;margin-bottom: 15px;
}.demo-box {display: flex;flex-direction: column;align-items: center;gap: 15px;padding: 20px;background: #f8f9fa;border-radius: 6px;
}.description {color: #666;font-size: 14px;text-align: center;
}.input-group {width: 100%;max-width: 300px;margin-bottom: 15px;
}.demo-input {width: 100%;padding: 8px 12px;border: 1px solid #dcdfe6;border-radius: 4px;font-size: 14px;
}.demo-input:focus {outline: none;border-color: #409eff;
}.status-message {padding: 8px 12px;border-radius: 4px;background: #f0f9eb;color: #67c23a;font-size: 14px;
}.status-message.error {background: #fef0f0;color: #f56c6c;
}@media (max-width: 768px) {.qrcode-demo {padding: 10px;}.demo-section {padding: 15px;}.demo-box {padding: 15px;}
}
</style>
📚測試代碼正常跑通,附其他基本代碼
- 添加路由
- 頁面展示入口
📘編寫路由 src\router\index.js
import { createRouter, createWebHistory } from 'vue-router'
import RightClickMenuView from '../views/RightClickMenuView.vue'
import RangePickerView from '../views/RangePickerView.vue'const router = createRouter({history: createWebHistory(import.meta.env.BASE_URL),routes: [{path: '/',name: 'progress',component: () => import('../views/ProgressView.vue'),},{path: '/tabs',name: 'tabs',// route level code-splitting// this generates a separate chunk (About.[hash].js) for this route// which is lazy-loaded when the route is visited.// 標簽頁(Tabs)component: () => import('../views/TabsView.vue'),},{path: '/accordion',name: 'accordion',// 折疊面板(Accordion)component: () => import('../views/AccordionView.vue'),},{path: '/timeline',name: 'timeline',// 時間線(Timeline)component: () => import('../views/TimelineView.vue'),},{path: '/backToTop',name: 'backToTop',component: () => import('../views/BackToTopView.vue')},{path: '/notification',name: 'notification',component: () => import('../views/NotificationView.vue')},{path: '/card',name: 'card',component: () => import('../views/CardView.vue')},{path: '/infiniteScroll',name: 'infiniteScroll',component: () => import('../views/InfiniteScrollView.vue')},{path: '/switch',name: 'switch',component: () => import('../views/SwitchView.vue')},{path: '/sidebar',name: 'sidebar',component: () => import('../views/SidebarView.vue')},{path: '/breadcrumbs',name: 'breadcrumbs',component: () => import('../views/BreadcrumbsView.vue')},{path: '/masonryLayout',name: 'masonryLayout',component: () => import('../views/MasonryLayoutView.vue')},{path: '/rating',name: 'rating',component: () => import('../views/RatingView.vue')},{path: '/datePicker',name: 'datePicker',component: () => import('../views/DatePickerView.vue')},{path: '/colorPicker',name: 'colorPicker',component: () => import('../views/ColorPickerView.vue')},{path: '/rightClickMenu',name: 'rightClickMenu',component: RightClickMenuView},{path: '/rangePicker',name: 'rangePicker',component: () => import('../views/RangePickerView.vue')},{path: '/navbar',name: 'navbar',component: () => import('../views/NavbarView.vue')},{path: '/formValidation',name: 'formValidation',component: () => import('../views/FormValidationView.vue')},{path: '/copyToClipboard',name: 'copyToClipboard',component: () => import('../views/CopyToClipboardView.vue')},{path: '/clickAnimations',name: 'clickAnimations',component: () => import('../views/ClickAnimationsView.vue')},{path: '/thumbnailList',name: 'thumbnailList',component: () => import('../views/ThumbnailListView.vue')},{path: '/keyboardShortcuts',name: 'keyboardShortcuts',component: () => import('../views/KeyboardShortcutsView.vue')},{path: '/commentSystem',name: 'commentSystem',component: () => import('../views/CommentSystemView.vue')},{path: '/qRCode',name: 'qRCode',component: () => import('../views/QRCodeView.vue')}],
})export default router
📘編寫展示入口 src\App.vue
<script setup>
import { RouterLink, RouterView } from 'vue-router'
import HelloWorld from './components/HelloWorld.vue'
</script><template><header><img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="125" height="125" /><div class="wrapper"><HelloWorld msg="You did it!" /><nav><RouterLink to="/">Progress</RouterLink><RouterLink to="/tabs">Tabs</RouterLink><RouterLink to="/accordion">Accordion</RouterLink><RouterLink to="/timeline">Timeline</RouterLink><RouterLink to="/backToTop">BackToTop</RouterLink><RouterLink to="/notification">Notification</RouterLink><RouterLink to="/card">Card</RouterLink><RouterLink to="/infiniteScroll">InfiniteScroll</RouterLink><RouterLink to="/switch">Switch</RouterLink><RouterLink to="/sidebar">Sidebar</RouterLink><RouterLink to="/breadcrumbs">Breadcrumbs</RouterLink><RouterLink to="/masonryLayout">MasonryLayout</RouterLink><RouterLink to="/rating">Rating</RouterLink><RouterLink to="/datePicker">DatePicker</RouterLink><RouterLink to="/colorPicker">ColorPicker</RouterLink><RouterLink to="/rightClickMenu">RightClickMenu</RouterLink><RouterLink to="/rangePicker">RangePicker</RouterLink><RouterLink to="/navbar">Navbar</RouterLink><RouterLink to="/formValidation">FormValidation</RouterLink><RouterLink to="/copyToClipboard">CopyToClipboard</RouterLink><RouterLink to="/clickAnimations">ClickAnimations</RouterLink><RouterLink to="/thumbnailList">ThumbnailList</RouterLink><RouterLink to="/keyboardShortcuts">KeyboardShortcuts</RouterLink><RouterLink to="/commentSystem">CommentSystem</RouterLink><RouterLink to="/qRCode">QRCode</RouterLink></nav></div></header><RouterView />
</template><style scoped>
header {line-height: 1.5;max-height: 100vh;
}.logo {display: block;margin: 0 auto 2rem;
}nav {width: 100%;font-size: 12px;text-align: center;margin-top: 2rem;
}nav a.router-link-exact-active {color: var(--color-text);
}nav a.router-link-exact-active:hover {background-color: transparent;
}nav a {display: inline-block;padding: 0 1rem;border-left: 1px solid var(--color-border);
}nav a:first-of-type {border: 0;
}@media (min-width: 1024px) {header {display: flex;place-items: center;padding-right: calc(var(--section-gap) / 2);}.logo {margin: 0 2rem 0 0;}header .wrapper {display: flex;place-items: flex-start;flex-wrap: wrap;}nav {text-align: left;margin-left: -1rem;font-size: 1rem;padding: 1rem 0;margin-top: 1rem;}
}
</style>
📚頁面效果
📚相關文章
?
?
-
0基礎3步部署自己的DeepSeek安裝步驟
-
DeepSeek 助力 Vue 開發:打造絲滑的步驟條(Step bar)https://blog.csdn.net/qq_33650655/article/details/145560497
-
DeepSeek 助力 Vue 開發:打造絲滑的進度條(Progress Bar)https://blog.csdn.net/qq_33650655/article/details/145577034
-
自己部署 DeepSeek 助力 Vue 開發:打造絲滑的標簽頁(Tabs)https://blog.csdn.net/qq_33650655/article/details/145587999
-
自己部署 DeepSeek 助力 Vue 開發:打造絲滑的折疊面板(Accordion)https://blog.csdn.net/qq_33650655/article/details/145590404
-
自己部署 DeepSeek 助力 Vue 開發:打造絲滑的時間線(Timeline )https://blog.csdn.net/qq_33650655/article/details/145597372
-
DeepSeek 助力 Vue 開發:打造絲滑的返回頂部按鈕(Back to Top)https://blog.csdn.net/qq_33650655/article/details/145615550
-
DeepSeek 助力 Vue 開發:打造絲滑的通知欄(Notification Bar)https://blog.csdn.net/qq_33650655/article/details/145620055
-
DeepSeek 助力 Vue 開發:打造絲滑的卡片(Card)https://blog.csdn.net/qq_33650655/article/details/145634564
-
DeepSeek 助力 Vue 開發:打造絲滑的無限滾動(Infinite Scroll)https://blog.csdn.net/qq_33650655/article/details/145638452
-
DeepSeek 助力 Vue 開發:打造絲滑的開關切換(Switch)https://blog.csdn.net/qq_33650655/article/details/145644151
-
DeepSeek 助力 Vue 開發:打造絲滑的側邊欄(Sidebar)https://blog.csdn.net/qq_33650655/article/details/145654204
-
DeepSeek 助力 Vue 開發:打造絲滑的面包屑導航(Breadcrumbs)https://blog.csdn.net/qq_33650655/article/details/145656895
-
DeepSeek 助力 Vue 開發:打造絲滑的瀑布流布局(Masonry Layout)https://blog.csdn.net/qq_33650655/article/details/145663699
-
DeepSeek 助力 Vue 開發:打造絲滑的評分組件(Rating)https://blog.csdn.net/qq_33650655/article/details/145664576
-
DeepSeek 助力 Vue 開發:打造絲滑的日期選擇器(Date Picker),未使用第三方插件 https://blog.csdn.net/qq_33650655/article/details/145673279
-
DeepSeek 助力 Vue 開發:打造絲滑的顏色選擇器(Color Picker)https://blog.csdn.net/qq_33650655/article/details/145689522
-
DeepSeek 助力 Vue 開發:打造絲滑的右鍵菜單(RightClickMenu)https://blog.csdn.net/qq_33650655/article/details/145706658
-
DeepSeek 助力 Vue 開發:打造絲滑的范圍選擇器(Range Picker)https://blog.csdn.net/qq_33650655/article/details/145713572
-
DeepSeek 助力 Vue 開發:打造絲滑的導航欄(Navbar)https://blog.csdn.net/qq_33650655/article/details/145732421
-
DeepSeek 助力 Vue 開發:打造絲滑的表單驗證(Form Validation)https://blog.csdn.net/qq_33650655/article/details/145735582
-
DeepSeek 助力 Vue 開發:打造絲滑的復制到剪貼板(Copy to Clipboard)https://blog.csdn.net/qq_33650655/article/details/145739569
-
DeepSeek 助力 Vue 開發:打造絲滑的點擊動畫(Click Animations)https://blog.csdn.net/qq_33650655/article/details/145766184
-
DeepSeek 助力 Vue 開發:打造絲滑的縮略圖列表(Thumbnail List)https://blog.csdn.net/qq_33650655/article/details/145776679
-
DeepSeek 助力 Vue 開發:打造絲滑的 鍵盤快捷鍵(Keyboard Shortcuts) https://blog.csdn.net/qq_33650655/article/details/145780227
-
DeepSeek 助力 Vue 開發:打造絲滑的評論系統(Comment System)https://blog.csdn.net/qq_33650655/article/details/145781104
到此這篇文章就介紹到這了,更多精彩內容請關注本人以前的文章或繼續瀏覽下面的文章,創作不易,如果能幫助到大家,希望大家多多支持寶碼香車~💕,若轉載本文,一定注明本文鏈接。
更多專欄訂閱推薦:
👍 html+css+js 絢麗效果
💕 vue
?? Electron
?? js
📝 字符串
?? 時間對象(Date())操作