How to use checkbox components
This article mainly introduces the relevant knowledge of "how to use checkbox components". The editor shows you the operation process through an actual case. The operation method is simple, fast and practical. I hope this article "how to use checkbox components" can help you solve the problem.
Export default {
Name: 'chatCheckBox'
Props: {
Id: {
Type: String
}
ForId: {
Type: String
}
Name: {
Type: String
}
VModelValue: {
Type: Boolean
}
}
Data () {
Return {
Value: this.vModelValue
}
}
Methods: {
Check (e) {
This.$emit ('change', e)
}
}
}
@ import'@ css/globalCite/defaultVariable.scss'
@ import'@ css/globalCite/defaultThemeVariable.scss'
@ import'@ css/globalCite/themeMixin.scss'
@ import'@ css/globalCite/bgImageMixin.scss'
@ import'@ css/vux/chatCheckbox.scss'
This is the end of the introduction to "how to use checkbox components". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.