@yoooloo42/joker 1.0.208 → 1.0.210
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 +11 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +11 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -24464,14 +24464,23 @@ var ly0default$2 = {
|
|
|
24464
24464
|
|
|
24465
24465
|
var script$g = {
|
|
24466
24466
|
__name: 'index',
|
|
24467
|
-
props:
|
|
24467
|
+
props: {
|
|
24468
|
+
myProps: {
|
|
24469
|
+
type: Object,
|
|
24470
|
+
default: () => ({})
|
|
24471
|
+
},
|
|
24472
|
+
scopeThis: {
|
|
24473
|
+
type: Object,
|
|
24474
|
+
default: () => ({})
|
|
24475
|
+
}
|
|
24476
|
+
},
|
|
24468
24477
|
setup(__props) {
|
|
24469
24478
|
|
|
24470
24479
|
const props = __props;
|
|
24471
24480
|
const myProps_box = reactive(unclassified.deepClone.deepDefaults(props.myProps, ly0default$2.myProps));
|
|
24472
24481
|
const scopeThis_box = reactive(props.scopeThis);
|
|
24473
24482
|
|
|
24474
|
-
watch(()=>myProps.menu, (newVal, oldVal) => {
|
|
24483
|
+
watch(()=>props.myProps.menu, (newVal, oldVal) => {
|
|
24475
24484
|
console.log('测试 000', newVal);
|
|
24476
24485
|
});
|
|
24477
24486
|
watch(()=>myProps_box.menu, (newVal, oldVal) => {
|