摘要: 在vscode项目打开终端 git config user.name name git config user.email email@email.com 本来试了几次没成功,因为搜的文章里都是 // 配置邮箱 git config --global user.email "you@example. 阅读全文
posted @ 2024-03-27 23:03 ayubene 阅读(227) 评论(0) 推荐(0)
摘要: 这个我查了半天十分奇怪的报错 是因为我没有在main.tsmain.ts引入并使用路由器 // 引入createApp创建应用 import { createApp } from "vue"; // 引入APP根组件 import App from './App.vue' // 引入pinia im 阅读全文
posted @ 2024-03-27 22:43 ayubene 阅读(78) 评论(0) 推荐(0)
摘要: npm init vite 填写项目名称即可 阅读全文
posted @ 2024-03-27 16:38 ayubene 阅读(16) 评论(0) 推荐(0)
摘要: 菜鸟教程链接 固定宽度 .container 类用于创建固定宽度的响应式页面。 <div class="container"> <h1>我的第一个 Bootstrap 页面</h1> <p>这是一些文本。</p> </div> 100% 宽度 .container-fluid 类用于创建一个全屏幕尺 阅读全文
posted @ 2024-03-27 15:49 ayubene 阅读(37) 评论(0) 推荐(0)
摘要: 菜鸟教程链接 如何安装/使用 两种安装方式: 使用 Bootstrap5 CDN。 在index.html文件的head标签内,添加: <!-- 新 Bootstrap5 核心 CSS 文件 --> <link rel="stylesheet" href="https://cdn.staticfil 阅读全文
posted @ 2024-03-27 14:53 ayubene 阅读(93) 评论(0) 推荐(0)
摘要: 菜鸟教程链接 基本是阅读教程,记笔记大部分为直接复制 基础类型 any,number,string,boolean,数组(如let x:number[] = [1,2]或let x:Array<number> = [1,2]),元组(let x: [string, number]) enum enu 阅读全文
posted @ 2024-03-27 11:56 ayubene 阅读(125) 评论(0) 推荐(0)