@tagplus/components 2.0.13 → 2.0.14
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 +1 -1
- package/dist/tp.common.js.map +1 -1
- package/dist/tp.css +1 -1
- package/dist/tp.umd.js +1 -1
- 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 +6 -0
package/package.json
CHANGED
|
@@ -306,6 +306,9 @@ export default {
|
|
|
306
306
|
if (!Object.keys(newVal).length) { return {} }
|
|
307
307
|
if (!this.value[this.valueKey]) {
|
|
308
308
|
if (process.env.DEBUG === 'true') {
|
|
309
|
+
console.error(
|
|
310
|
+
`formatedValue this.value '${this.value}'`
|
|
311
|
+
)
|
|
309
312
|
console.error(
|
|
310
313
|
`Autosuggest '${this.$options.name}' option doesn't have a valueKey '${this.valueKey}' key`
|
|
311
314
|
)
|
|
@@ -492,6 +495,9 @@ export default {
|
|
|
492
495
|
if (!Object.keys(val).length) { return {} }
|
|
493
496
|
// Se val for Object converte para outro tipo
|
|
494
497
|
if (!this.value[this.valueKey]) {
|
|
498
|
+
console.error(
|
|
499
|
+
` getOption this.value '${this.value}'`
|
|
500
|
+
)
|
|
495
501
|
console.error(
|
|
496
502
|
`Autosuggest '${this.$options.name}' option doesn't have a valueKey '${this.valueKey}' key`
|
|
497
503
|
)
|