摘要: 视频 5)路由的配置 vue-router 路由分为KV node平台(并非语言) 对于后台而言:K即为URL地址 V即为相应的中间件 http://localhost:8080/0607 app.get("/0607",(res,req)=>{ res.send('我是祖国的老花骨朵'); }); 阅读全文
posted @ 2023-04-25 11:05 垂序葎草 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 视频 终止cmd的处理,快捷键:ctrl+c 清屏快捷键:cls VSCode添加新建文件夹的快捷键 Shift + A 3)脚手架下载下来的项目稍微配置一下 3.1:浏览器自动打开 在package.json文件中 "scripts": { "serve": "vue-cli-service se 阅读全文
posted @ 2023-04-25 10:50 垂序葎草 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 视频 下了vue vscode snippets,然后直接输入vbase就可以生成代码片段 2)脚手架使用 2: vue init webpack 项目的名字 3|4:vue create 项目名称 脚手架目录:public + assets文件夹区别 node_modules:放置项目依赖的地方 阅读全文
posted @ 2023-04-25 01:37 垂序葎草 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 20230426 顺利通过 前置题目 21. 合并两个有序链表 原题解 ###题目 约束 ###题解 ####方法一 class Solution { public: ListNode* sortList(ListNode* head) { return sortList(head, nullptr 阅读全文
posted @ 2023-04-25 00:36 垂序葎草 阅读(10) 评论(0) 推荐(0) 编辑