<template> <div> <el-input placeholder=" ruleform. name"/> </div> <template> <style> /deep/ .el-input_inner{ border:none; } </style>Copy the code

I’m sure a lot of people used to overwrite with /deep/ but it doesn’t work anymore

The reason for this is that the “deep” method has been changed

<template> <div> <el-input placeholder=" ruleform. name"/> <div> <template> <style> :deep().el-input_inner{ border:none; } </style> //Copy the code