发布时间:2023-11-18 17:00
<el-form :model="formData" label-width="80px">
<el-form-item label="label1">
<el-input v-model="formData.value1"></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="onSubmit">提交</el-button>
<el-button>取消</el-button>
</el-form-item>
</el-form>
<style lang="less" scoped>
.el-form {
.el-form-item {
/deep/ * {
font-size: 18px;
color: blue;
}
}
}
</style>
<style lang="less" scoped>
.el-form {
.el-form-item {
/deep/ .el-form-item__label {
font-size: 18px;
color: blue;
}
}
}
</style>
<style lang="less" scoped>
.el-form {
.el-form-item {
/deep/ .el-form-item__content {
* {
font-size: 18px;
color: blue;
}
}
}
}
</style>
<style lang="less" scoped>
.el-form {
.el-form-item {
/deep/ .el-form-item__content {
input {
font-size: 18px;
color: blue;
}
}
}
}
</style>
<style lang="less" scoped>
.el-form {
.el-form-item {
/deep/ .el-form-item__content {
button {
font-size: 18px;
color: blue;
}
}
}
}
</style>
python特殊变量name_一文掌握 __name__ 变量和在Python中的用法
ASP.NET Core基于K8S的微服务电商案例实践--学习笔记
Identity Server 4使用OpenID Connect添加用户身份验证(三)
【数据库专题】一文搞懂 B+树凭什么成为关系型数据库索引的主流数据结构
考虑储能电池参与一次调频技术经济模型的容量配置方法matlab程序
Transformer新型神经网络在机器翻译中的应用 | 百万人学AI
【Spring源码解析】XmlBeanFactory文件资源加载(包含时序图)