@yoooloo42/joker 1.0.222 → 1.0.223
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 +7 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +8 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
|
2
|
-
import { ref, createElementBlock, openBlock, Fragment, createCommentVNode, createElementVNode, normalizeStyle, toDisplayString, unref, reactive, computed, resolveComponent, createBlock, withCtx, renderList, createTextVNode, createVNode, isRef, defineComponent, h, onMounted, onBeforeUnmount,
|
|
2
|
+
import { ref, createElementBlock, openBlock, Fragment, createCommentVNode, createElementVNode, normalizeStyle, toDisplayString, unref, watch, reactive, computed, resolveComponent, createBlock, withCtx, renderList, createTextVNode, createVNode, isRef, defineComponent, h, onMounted, onBeforeUnmount, nextTick as nextTick$1, resolveDirective, withDirectives } from 'vue';
|
|
3
3
|
|
|
4
4
|
function _mergeNamespaces(n, m) {
|
|
5
5
|
m.forEach(function (e) {
|
|
@@ -23445,6 +23445,13 @@ const formProps_box = props.myProps;
|
|
|
23445
23445
|
const scopeThis_box = props.scopeThis;
|
|
23446
23446
|
const propsItem_box = props.item;
|
|
23447
23447
|
|
|
23448
|
+
watch(()=>formData_box[propsItem_box.fieldName], (newVal, oldVal) => {
|
|
23449
|
+
console.log('测试 000', newVal);
|
|
23450
|
+
});
|
|
23451
|
+
watch(()=>props.myProps[propsItem_box.fieldName], (newVal, oldVal) => {
|
|
23452
|
+
console.log('测试 111', newVal);
|
|
23453
|
+
});
|
|
23454
|
+
|
|
23448
23455
|
const input = reactive({
|
|
23449
23456
|
placeholder: propsItem_box.placeholder || formProps_box.para.placeholder.input,
|
|
23450
23457
|
showPassword: !!propsItem_box.showPassword,
|