@yoooloo42/joker 1.0.151 → 1.0.153
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/index.cjs.js +13 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +13 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -42492,12 +42492,24 @@ var script$c = {
|
|
|
42492
42492
|
const props = __props;
|
|
42493
42493
|
|
|
42494
42494
|
// 顶层组件的props属性需做响应性包装,页面和js可以使用相同的命名
|
|
42495
|
-
let tableData_box =
|
|
42495
|
+
let tableData_box = props.modelValue;
|
|
42496
42496
|
const tableProps_box = vue.reactive(unclassified.deepClone.deepMerge(
|
|
42497
42497
|
unclassified.deepClone.deepClone(ly0default$1.myProps),
|
|
42498
42498
|
props.myProps
|
|
42499
42499
|
));
|
|
42500
42500
|
|
|
42501
|
+
const a = props.modelValue;
|
|
42502
|
+
vue.watch(a, function (newVal, oldVal) {
|
|
42503
|
+
|
|
42504
|
+
console.log('测试 222', newVal);
|
|
42505
|
+
|
|
42506
|
+
});
|
|
42507
|
+
vue.watch(tableData_box, function (newVal, oldVal) {
|
|
42508
|
+
|
|
42509
|
+
console.log('测试 333', newVal);
|
|
42510
|
+
|
|
42511
|
+
});
|
|
42512
|
+
|
|
42501
42513
|
const scopeThis_box = vue.reactive(props.scopeThis);
|
|
42502
42514
|
|
|
42503
42515
|
return (_ctx, _cache) => {
|