摘要:
创建一个模板 npm init @vitejs/app my-vue-app -- --template vue yarn create @vitejs/app my-vue-app --template vue 目录结构 vscode 安装插件 volar 的vue3插件 安装yarn npm i 阅读全文
摘要:
阅读全文
摘要:
try { //拋異常 throw new Error('错误信息') } catch (e) { console.log(e) } console.log('abc') 阅读全文
摘要:
阅读全文
摘要:
文件路径 dirname: 获取文件的父文件夹。 basename: 获取文件名部分。 extname: 获取文件的扩展名。 const path=require('path') p='D:/testpro/nodejs/test/s.txt' console.log(path.basename(p 阅读全文
摘要:
let h=require('http') //创建服务器实例 let server=h.createServer() server.listen(8080,()=>{ console.log('hi') }) // server.on('request',(req,res)=>{ //req中包含 阅读全文
摘要:
自定义模块 a.js //导入 let test=require('./b.js') console.log(test.s) console.log(test.add1(3,2)) b.js let s=10 let add1=function add1(i,j){ return i+j } let 阅读全文
摘要:
tsc -w 监视 { //指定哪些文件需要被编译 // * 表示任意文件 **表示任意目录 "include": [ "./ts/*" ], //不包含 //"exclude": [], //设置编译指定文件 //"files": [], //编译器设置 //"编译选项" www.tslang.c 阅读全文
摘要:
47个过程(PMBOK2008) - 王景 - 博客园 (cnblogs.com) 项目管理过程 知识领域 过程组 含义 之前应完成 之后要进行 制定项目章程 整合 启动 编写一份正式批准项目并授权项目经理使用组织资源的文件的过程 无 制定项目管理计划 制定项目管理计划 整合 规划 定义、准备和协调 阅读全文