記錄用
// 靜態加載
{
path: '/dashboard',
name: 'dashboard',
component: dashboard
},
// 懶加載
{
path: '/nfv_mano_plugin',
name: 'nfv_mano_plugin',
component: () => import(/* webpackChunkName: "nfv_mano_plugin" */ '../views/nfv_mano_plugin.vue')
},
// 靜態加載
import Table from '../components/global/table.vue';
// 懶加載 ( without options )
const Modalcreate = defineAsyncComponent(() => import('../components/global/modal-create.vue'))
// 懶加載 ( with options )
const Modalcreate = defineAsyncComponent( {
// 為了清晰看到檔名,這裏使用 webpackChunkName 指定檔名
loader: () => import(/* webpackChunkName: "Modalcreate" */'../components/global/modal-create.vue'),
// delay: 2000, // 2 秒後顯示等待組件 LoadingComponent
// timeout: 3000, // 如果超過 3 秒,顯示錯誤組件 ErrorComponent
// loadingComponent: Loading
});
透過這次兩位Dcard工程師的經驗分享,了解到從在學階段,再到找工作階段,到最後當上工程師之後,有許多值得我們注意的地方,以下列出我覺得重要的知識點。 應徵軟體工程師職位最重要的是有作品集,沒有作品,履歷再漂亮也沒用。 要花時間寫 side project,嘗試和練習感興趣的新技術。 寫程式要考慮擴展性和維護性,讓他人接下來要修改或繼續寫都能很輕鬆。 英文程度很重要,而很多外商是用英文面試。 加入技術社群,交流彼此的想法與技術。
Apr 8, 2022自動排版 Alt + Shift + F 複製上一行 Alt + Shift + ↑ 當前行移動到上一行 Alt + ↑ 刪除當前行 Ctrl + Shift + K 當前行上新增一行 Ctrl + Shift + Enter 當前行下新增一行 Ctrl + Enter 新增檔案 Ctrl + N 關閉目前檔案 Ctrl + W 切換分頁 Ctrl +Tab (Ctrl + Shift + Tab)
Mar 28, 2022適用 windows 中文文檔 基本配置 1. 創建資料夾 mkdir 0925 2. 進入資料夾 cd 0925
Nov 17, 20211. 避免表格換行 table tr th { white-space: nowrap; } 2. inline-block + vertical-align 垂直置中 適用行內元素 ( inline , inline-block ),搭配偽元素 <div class="container"> <div class="item"></div>
Nov 15, 2021or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up