11 2020 档案
摘要:https://blog.mazey.net/1716.html header{ height:10px; display:sticky; } content{ min-height: calc(100vh - 10px ); display:flex; flex-direction:column;
阅读全文
摘要:windows git安装后,配置全局账户: git config --global user.name "name" git config --global user.email "email@example.com" 查看当前目录: pwd 创建仓库: git init 查看隐藏目录.git文件
阅读全文
摘要:花了三个小时解决类名控制的问题 (越来越菜) 描述问题: 目前发现的问题是用一个类名控制显示 是不合理的 (下图红框中为原来的一个类名控制) 修改页面设置默认值时,无法控制样式动态变化,button 默认display:inline-block; 所以有了如下改动:
阅读全文
摘要:ant design vue组件中没有关于滚动条的设置 这篇文章介绍了怎么设置滚动条https://www.cnblogs.com/home-/p/12195761.html 插件官网:https://vuescrolljs.yvescoding.org/zh/demo/ 内容如下 安装模块: np
阅读全文
摘要:<template> <a-config-provider :locale="locale"> </a-config-provider> </template> <script> import zhCN from 'ant-design-vue/lib/locale-provider/zh_CN'
阅读全文
摘要:预设vue: 1 { 2 // Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and 3 // description. The prefix
阅读全文
摘要:全国行政区划GeoJON 支持省市县维度 http://datav.aliyun.com/tools/atlas/#&lat=30.332329214580188&lng=106.72278672066881&zoom=3.5 HighCharts 全球行政区划数据集 https://img.hch
阅读全文
摘要:首选项设置settings.json settings.json中配置files.associations对象 1 "emmet.includeLanguages": { 2 "vue": "html", 3 "vue-html": "html", 4 "wxml": "html" 5 }, 转载:
阅读全文
摘要:在vue 中 使用 g2 好多帖子说在 main.js 文件中 直接用下列语句引用 1 import G2 from '@antv/g2' 2 Vue.use(G2) 会出现下列错误: 解决办法: 1 import * as G2 from '@antv/g2' 新问题: 但在新页面还是需要再引用一
阅读全文
摘要:问题: 不明白数组怎么就有children字段了,怎么添加的 运行顺序是怎么样的 1 <script> 2 3 export default { 4 name: 'app', 5 data() { 6 return { 7 treeData: [ 8 { 9 id: '1', 10 name: '1
阅读全文