- constructor(elem) {
- this.elem = elem;
- this.checkbox = elem.querySelector('input[type=checkbox]');
- this.display = elem.querySelector('[role="checkbox"]');
+ setup() {
+ this.container = this.$el;
+ this.checkbox = this.container.querySelector('input[type=checkbox]');
+ this.display = this.container.querySelector('[role="checkbox"]');