码迷,mamicode.com
首页 >  
搜索关键字:A component require    ( 12084个结果
fastreport打印空白行的方法
FastReport 3.X var PageLine: integer; //在現在頁列印到第幾行 PageMaxRow: integer=15; //設定每頁列數 procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin P ...
分类:其他好文   时间:2021-06-22 18:27:26    阅读次数:0
webpackPlugin处理index.html到dist
1.webpack.config.js中导入 const HtmlWebpackPlugin = require('html-webpack-plugin') 2.pulgin中新增 new HtmlWebpackPlugin({ template:'index.html' }) 3.需要删除out ...
分类:Web程序   时间:2021-06-21 20:44:37    阅读次数:0
【UE4 设计模式】装饰器模式 Decorator Pattern
概述 描述 动态地给一个对象增加一些额外的职责(Responsibility),就增加对象功能来说,装饰模式比生成子类实现更为灵活。是一种对象结构型模式。 套路 抽象构件(Component) 具体构件和抽象装饰类的基类,声明了在具体构建中实现的业务方法。 具体构件(ConcreteComponen ...
分类:其他好文   时间:2021-06-21 19:57:11    阅读次数:0
react学习-组件和props传值
函数组件 // /src/index.js...function Welcome (props) { return ( <div> <h3>hello function component</h3> <span>{props.data}</span> </div> )} 声明一个函数,以返回值的形式 ...
分类:其他好文   时间:2021-06-20 18:15:24    阅读次数:0
react学习-组合与继承
在父组件中引入组件时使用双标签的形式。把要重用的代码或者组件插入到双标签里面 ...render () { return ( <FancyBorder color="blue"> <h1 className="Dialog-title"> Welcome </h1> <p className="Di ...
分类:其他好文   时间:2021-06-20 18:11:05    阅读次数:0
机器学习sklearn(十五): 特征工程(六)特征选择(一)主成分分析PCA
1. 准确的PCA和概率解释(Exact PCA and probabilistic interpretation) PCA 用于对具有一组连续正交分量(Orthogonal component 译注: 或译为正交成分,下出现 成分 和 分量 是同意词)的多变量数据集进行方差最大化的分解。 在 sc ...
分类:其他好文   时间:2021-06-20 17:35:34    阅读次数:0
element-ui 局部加载loading
全局就按照官网的使用方式没问题 但局部就有点模糊,可能是本人太菜了 注意 如果用 Vue.component(Loading.name, Loading);//不能用这种 ...
分类:其他好文   时间:2021-06-18 19:50:44    阅读次数:0
vue中is的使用
:is的作用有两个:1,动态切换组件 <!-- 组件会在 `件名` 改变时改变 --> <component :is="组件名变量"></component> <!-- 通过is特性,可以动态切换当前组件 --> <div v-bind:is="currentView"></div> <!-- v- ...
分类:其他好文   时间:2021-06-18 19:21:35    阅读次数:0
06-SpringBoot配置绑定
1.5 注解@ConfigurationProperties进行组件属性和资源配置文件中的值进行绑定 注解@ConfigurationProperties+@Component的方式将application.properties文件中的值绑定到某个组件的属性上。注意现在默认只能是绑定核心资源配置文件 ...
分类:编程语言   时间:2021-06-17 17:11:28    阅读次数:0
vue-element-admin登录流程修改(亲测有用)
废话不多说,直接开始上步骤. 一、去官网下载https://panjiachen.github.io/vue-element-admin-site/zh/guide/,我下载的是基础模板. 二、修改vue.config.js文件 1.找到module.exports下的before: require ...
分类:其他好文   时间:2021-06-17 16:49:59    阅读次数:0
12084条   上一页 1 2 3 4 5 ... 1209 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!