赞
踩
- <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>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。