<el-input v-model="account.username" class="input-line" placeholder="请输入" @keyup.enter.native="submitForm('form-box')"></el-input> <style scoped lang="scss">.input-line { ::v-deep .el-input__inner { border: none !important; }}
使用 ::v-deep 就可以了,完美解决
<el-input v-model="account.username" class="input-line" placeholder="请输入" @keyup.enter.native="submitForm('form-box')"></el-input> <style scoped lang="scss">.input-line { ::v-deep .el-input__inner { border: none !important; }}
使用 ::v-deep 就可以了,完美解决