@netang/quasar 0.0.25 → 0.0.28
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/components/field-tree/index.vue +1 -9
- package/components/input-number/index.vue +370 -151
- package/components/{power-data → private/edit-power-data}/index.vue +0 -0
- package/components/select/index.vue +96 -13
- package/package.json +1 -1
- package/components/input-number/number.js +0 -67
- package/components/input-price-cent/index.vue +0 -213
- package/components/input-price-yuan/index.vue +0 -179
- package/components/select-filter/index.vue +0 -75
|
@@ -181,17 +181,10 @@ export default {
|
|
|
181
181
|
/**
|
|
182
182
|
* 组合式
|
|
183
183
|
*/
|
|
184
|
-
setup(props, { emit
|
|
184
|
+
setup(props, { emit }) {
|
|
185
185
|
|
|
186
186
|
// ==========【计算属性】=========================================================================================
|
|
187
187
|
|
|
188
|
-
/**
|
|
189
|
-
* 插槽标识
|
|
190
|
-
*/
|
|
191
|
-
const slotNames = computed(function() {
|
|
192
|
-
return utils.isValidObject(slots) ? Object.keys(slots) : []
|
|
193
|
-
})
|
|
194
|
-
|
|
195
188
|
/**
|
|
196
189
|
* 显示值
|
|
197
190
|
*/
|
|
@@ -292,7 +285,6 @@ export default {
|
|
|
292
285
|
* 监听输入框值
|
|
293
286
|
*/
|
|
294
287
|
watch(inputValue, function (val) {
|
|
295
|
-
|
|
296
288
|
if (
|
|
297
289
|
// 如果弹出层是隐藏的
|
|
298
290
|
! showPopup.value
|