zhengfen
zhengfen
``` color(value){ return value? 'success':'default'; }, add(item){ this.items.unshift(item); this.hide_add_modal(); }, ``` when a new item is unshifted into items, even if the value is set false, the color is green...
### solved edit file upload-2.vue: (at line 828) replace ``` new Promise(function(resolve, reject) { let client = new XMLHttpRequest(); client.open('POST', url, true); client.withCredentials = withCredentials; client.onreadystatechange = function() { if...
Would be nice to add property 'clearable' to allow user clear input https://vue-select.org/api/props.html#clearable
for Typescript use
to be able to set the width and height of video area, I had to change the code: ``` constraints: { width: this.readerSize.width , height: this.readerSize.height , }, ``` I...
added: emit event 'update:modelValue' after onChange in MainSetup.ts
I thought on-changed was an event so I made this: ``` :on-changed="tagsChanged(locale, $event)" ``` then I realized the on-changed is a prop... I would need an event with tags value,...