上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 90 下一页
摘要: display:fles; flex-wrap: wrap; // 是否换行 justify-content: space-between; // 多行 行对齐方式 两端对齐 align-content: space-between; // 列对齐方式 两端对齐 align-items:center 阅读全文
posted @ 2020-06-16 11:39 Running00 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1 hmr 不起作用 使用npx parcel serve src/1.html --no-cache --port 8881 即试试加端口试试, serve 和 --no-cache 不加也可以 2 报错 Uncaught Error: Cannot find module '../node_mo 阅读全文
posted @ 2020-06-16 10:48 Running00 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 实例 如果文档宽度小于 300 像素则修改背景颜色(background-color): @media screen and (max-width: 300px) { body { background-color:lightblue; } } 阅读全文
posted @ 2020-06-15 14:59 Running00 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1 标题 <h1> - <h6> 2 section :定义文档中的一个章节 <section> 这个元素在 HTML5 中加入 https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/section 3 article 定义可以独立于内容 阅读全文
posted @ 2020-06-15 11:19 Running00 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1 安装:https://blog.csdn.net/CC_leather/article/details/105051719#_6 https://juejin.im/post/5e4cbcd66fb9a07c7c2d5a1c 2 使用: show dbs # 显示所有数据的列表 db # 显示当 阅读全文
posted @ 2020-06-12 13:31 Running00 阅读(109) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum 阅读全文
posted @ 2020-06-11 20:06 Running00 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-06-11 14:35 Running00 阅读(103) 评论(0) 推荐(0) 编辑
摘要: el-dialog组件的属性 :visible.sync,同个传入的props的某个属性对应的值决定时候 1 要用computed ,并且要设置get和set computed: { visible: { get() { return 值// 来着props }, set() { return 值/ 阅读全文
posted @ 2020-06-11 12:07 Running00 阅读(136) 评论(0) 推荐(0) 编辑
摘要: runtimeCompiler: true, // 如果路由中的component 不是组件时候,是'<template></template>' ;需要设置为true 阅读全文
posted @ 2020-06-10 20:20 Running00 阅读(157) 评论(0) 推荐(0) 编辑
摘要: //变化监听 watch: { $route() { // } } 路由不存在适合,重定向到A对应的路由 { path: '*', redirect: A } 路由未匹配到时候展示A组件 { path: '*', component: A } 阅读全文
posted @ 2020-06-10 20:05 Running00 阅读(105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 90 下一页