1
0
mirror of https://github.com/sahadev/vue-component-creater-ui.git synced 2025-06-06 13:04:05 +08:00

update: remote ::v-deep warn

This commit is contained in:
shangbin 2021-12-06 14:23:47 +08:00
parent 1f52b5da21
commit f49cca3044
7 changed files with 10 additions and 10 deletions

View File

@ -106,7 +106,7 @@ export default {
<style scoped>
/* 在此自动生成 */
::v-deep .el-dialog__body {
:v-deep(.el-dialog__body) {
padding: 0 30px !important;
}

View File

@ -163,7 +163,7 @@ center {
padding: 20px;
}
::v-deep .el-drawer__body {
:v-deep(.el-drawer__body) {
height: 100%;
}

View File

@ -118,7 +118,7 @@ export default {
<style scoped>
/* 在此自动生成 */
::v-deep .el-dialog__body {
:v-deep(.el-dialog__body) {
padding: 0 30px !important;
}
</style>

View File

@ -260,7 +260,7 @@ nav {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
}
::v-deep .el-submenu__title {
:v-deep(.el-submenu__title) {
padding: 0 15px !important;
}

View File

@ -89,7 +89,7 @@ export default {
<style scoped>
/* 在此自动生成 */
::v-deep .el-dialog__body {
:v-deep(.el-dialog__body) {
padding: 0 30px !important;
}
</style>

View File

@ -451,7 +451,7 @@ export default {
},
},
}; </script>
<style scoped>.avatar-uploader ::v-deep .el-upload {
<style scoped>.avatar-uploader :v-deep(.el-upload) {
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;

View File

@ -135,15 +135,15 @@ export default {
onClickEditAddress(){}
},
}; </script>
<style scoped>::v-deep .van-tabbar--fixed {
<style scoped>:v-deep(.van-tabbar--fixed) {
position: initial;
}
::v-deep .van-address-list__bottom {
:v-deep(.van-address-list__bottom) {
position: initial;
}
::v-deep .van-goods-action {
:v-deep(.van-goods-action) {
position: initial;
}
::v-deep .van-submit-bar {
:v-deep(.van-submit-bar) {
position: initial;
}</style>