@tagplus/components 0.2.83 → 0.2.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tp.common.js +25 -25
- package/dist/tp.common.js.map +1 -1
- package/dist/tp.css +1 -1
- package/dist/tp.umd.js +25 -25
- package/dist/tp.umd.js.map +1 -1
- package/dist/tp.umd.min.js +1 -1
- package/dist/tp.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Autosuggest/Autosuggest.vue +2 -2
package/package.json
CHANGED
|
@@ -335,7 +335,7 @@ export default {
|
|
|
335
335
|
if (this.loadOnCreate) {
|
|
336
336
|
this.previousQuery = false
|
|
337
337
|
// Chama função do element-ui select que faz o remote method
|
|
338
|
-
this.handleQueryChange(
|
|
338
|
+
this.handleQueryChange('')
|
|
339
339
|
} else {
|
|
340
340
|
// Marca para fazer a requisição no primeiro clique
|
|
341
341
|
this.doRequest = true
|
|
@@ -522,7 +522,7 @@ export default {
|
|
|
522
522
|
// Se está visivel
|
|
523
523
|
if (this.visible) {
|
|
524
524
|
if (this.doRequest) {
|
|
525
|
-
this.handleQueryChange(this.
|
|
525
|
+
this.handleQueryChange(this.query)
|
|
526
526
|
this.doRequest = false
|
|
527
527
|
}
|
|
528
528
|
(this.$refs.input || this.$refs.reference).focus()
|