@yoooloo42/joker 1.0.209 → 1.0.211
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 +15 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +16 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -24468,7 +24468,16 @@ var ly0default$2 = {
|
|
|
24468
24468
|
|
|
24469
24469
|
var script$g = {
|
|
24470
24470
|
__name: 'index',
|
|
24471
|
-
props:
|
|
24471
|
+
props: {
|
|
24472
|
+
myProps: {
|
|
24473
|
+
type: Object,
|
|
24474
|
+
default: () => ({})
|
|
24475
|
+
},
|
|
24476
|
+
scopeThis: {
|
|
24477
|
+
type: Object,
|
|
24478
|
+
default: () => ({})
|
|
24479
|
+
}
|
|
24480
|
+
},
|
|
24472
24481
|
setup(__props) {
|
|
24473
24482
|
|
|
24474
24483
|
const props = __props;
|
|
@@ -24482,6 +24491,11 @@ vue.watch(()=>myProps_box.menu, (newVal, oldVal) => {
|
|
|
24482
24491
|
console.log('测试 111', newVal);
|
|
24483
24492
|
});
|
|
24484
24493
|
|
|
24494
|
+
vue.onMounted(()=>{
|
|
24495
|
+
console.log('测试 222', props.myProps.menu);
|
|
24496
|
+
console.log('测试 333', myProps_box.menu);
|
|
24497
|
+
});
|
|
24498
|
+
|
|
24485
24499
|
const handleRun = (
|
|
24486
24500
|
index, // 目标索引
|
|
24487
24501
|
menu, // 当前菜单
|