摘要:
https://www.cnblogs.com/wangyu19900123/p/10531662.html 阅读全文
摘要:
安装步骤:https://www.zentao.net/book/zentaopmshelp/76.html 由于VC++环境安装不上,所以 只能使用禅道windows一键安装包(未加安全设置)的版本进行安装 阅读全文
摘要:
中文翻译之后:<template v-slot>只能出现在接收组件内的根级别 原因:很简单,就是在你的父组件中,<template v-slot>没有用在子组件下,只需要放在子组件中就行了 阅读全文
摘要:
//初始化数据data() { return { testComputed: {value:'v1'} }; }, //1.赋值testComputed,则预期会打印computedcomputed: { test() { console.log('computed'); return this.t 阅读全文
摘要:
其实vue官网已经讲的很详细了:https://cn.vuejs.org/v2/guide/class-and-style.html#ad 我自己记录一下style是如何用的: 1.直接写死 //背景色和字体<label style="background-color:red;font-size:5 阅读全文
摘要:
思路: 在不影响宽度的情况下,以自定义列优先,在影响宽度的情况下,以自适应宽度列优先,都不影响的情况下,以最小值优先。总结:实际上都是取最小值当屏幕分辨率小于750px的时候,最多显示1列,自定义列为1-6,比较,取最小值1; 当屏幕分辨率小于980px的时候,最多显示2列,自定义列为1-6,比较, 阅读全文
摘要:
//转换列值 //数据库表字段是datetime(2,7) transformColumnValue(scope, column) { const type = column.type; let value = scope.row[column.property.dataField.value]; 阅读全文
摘要:
这里主要列举一下,监听的是对象的各种情况 data() { return { test:{id:'id1', name:'name1'} }; }, 情况一:监听对象 watch: { test: { handler(value) { console.log('test-value', value) 阅读全文
摘要:
这里主要列举一下,计算属性内是对象的各种情况 data() { return { test:{id:'id1', name:'name1'} }; }, 情况一:返回对象 computed:{ testValue(){ return this.test; } } 情况二:返回对象的属性 comput 阅读全文
摘要:
添加背景图片,但是背景图片太小了(图片只是测试图片,实际工作中是不知道什么颜色的背景有很多logo的图片) background-image: url('../assets/images/test.jpg') ; background-repeat: no-repeat; background-si 阅读全文