上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: 菜鸟教程学习链接 字体颜色 Bootstrap 5 提供了一些有代表意义的颜色类:.text-muted, .text-primary, .text-success, .text-info, .text-warning, .text-danger, .text-secondary, .text-wh 阅读全文
posted @ 2024-03-28 15:49 ayubene 阅读(59) 评论(0) 推荐(0)
摘要: 菜鸟教程链接 Bootstrap 5 默认设置 Bootstrap 5 默认的 font-size 为 16px, line-height 为 1.5 默认的 font-family 为 "Helvetica Neue", Helvetica, Arial, sans-serif 此外,所有的 元素 阅读全文
posted @ 2024-03-28 14:14 ayubene 阅读(27) 评论(0) 推荐(0)
摘要: 菜鸟教程链接 Bootstrap 提供了一套响应式、移动设备优先的流式网格系统,随着屏幕或视口(viewport)尺寸的增加,系统会自动分为最多 12 列 规则 网格每一行需要放在设置了 .container (固定宽度) 或 .container-fluid (全屏宽度) 类的容器中,这样就可以自 阅读全文
posted @ 2024-03-28 11:51 ayubene 阅读(47) 评论(0) 推荐(0)
摘要: 在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)
摘要: 下载git git下载地址 配置秘钥到git 拉取项目git clone 安装npm 每次拉取项目前都有一次npm i 启动项目npm run dev 感谢同事教我 阅读全文
posted @ 2024-03-26 16:52 ayubene 阅读(10) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页