@yoooloo42/joker 1.0.61 → 1.0.62

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 CHANGED
@@ -22423,14 +22423,10 @@ var script$h = {
22423
22423
 
22424
22424
  const props = __props;
22425
22425
 
22426
- const style = {
22427
- box: vue.computed(()=>{
22428
- return styleModule.label.box(props.item)
22429
- }),
22430
- label: vue.computed(()=>{
22431
- return styleModule.label.label(props.item)
22432
- }),
22433
- };
22426
+ const style = vue.ref({
22427
+ box: styleModule.label.box(props.item),
22428
+ label: styleModule.label.label(props.item),
22429
+ });
22434
22430
 
22435
22431
  const hdlClick = () => {
22436
22432
  if(props.item.hdlLabelClick){
@@ -22442,11 +22438,11 @@ return (_ctx, _cache) => {
22442
22438
  return (vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
22443
22439
  vue.createCommentVNode(" label-box "),
22444
22440
  vue.createElementVNode("div", {
22445
- style: vue.normalizeStyle(style.box),
22441
+ style: vue.normalizeStyle(style.value.box),
22446
22442
  onClick: hdlClick
22447
22443
  }, [
22448
22444
  vue.createElementVNode("span", {
22449
- style: vue.normalizeStyle(style.label)
22445
+ style: vue.normalizeStyle(style.value.label)
22450
22446
  }, vue.toDisplayString(__props.item.label), 5 /* TEXT, STYLE */)
22451
22447
  ], 4 /* STYLE */)
22452
22448
  ], 2112 /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */))