br-dionysus 1.7.3 → 1.7.5
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/README.md +8 -0
- package/dist/br-dionysus.es.js +3497 -3491
- package/dist/br-dionysus.umd.js +8 -8
- package/dist/index.css +1 -1
- package/package.json +1 -1
- package/packages/Hook/useTableConfig/useTableConfig.ts +5 -5
- package/packages/MTableColumn/src/MTableColumn.vue +19 -5
- package/packages/MTableColumnSet/docs/demo.vue +4 -0
- package/packages/MTableColumnSet/src/MTableColumnSet.vue +7 -2
- package/web-types.json +1 -1
package/README.md
CHANGED
|
@@ -1401,12 +1401,16 @@ const tableTitle = [
|
|
|
1401
1401
|
<div>
|
|
1402
1402
|
{{ tableConfig }}
|
|
1403
1403
|
</div>
|
|
1404
|
+
<!--<p @click="test = !test">ddd</p>-->
|
|
1405
|
+
<!--<m-dialog v-model="test"></m-dialog>-->
|
|
1404
1406
|
</div>
|
|
1405
1407
|
</template>
|
|
1406
1408
|
|
|
1407
1409
|
<script setup lang="ts">
|
|
1408
1410
|
import { ref } from 'vue'
|
|
1409
1411
|
|
|
1412
|
+
// const test = ref<boolean>(false)
|
|
1413
|
+
|
|
1410
1414
|
const tableConfig = ref({
|
|
1411
1415
|
date: {
|
|
1412
1416
|
minWidth: 100,
|
|
@@ -3702,12 +3706,16 @@ const tableTitle = [
|
|
|
3702
3706
|
<div>
|
|
3703
3707
|
{{ tableConfig }}
|
|
3704
3708
|
</div>
|
|
3709
|
+
<!--<p @click="test = !test">ddd</p>-->
|
|
3710
|
+
<!--<m-dialog v-model="test"></m-dialog>-->
|
|
3705
3711
|
</div>
|
|
3706
3712
|
</template>
|
|
3707
3713
|
|
|
3708
3714
|
<script setup lang="ts">
|
|
3709
3715
|
import { ref } from 'vue'
|
|
3710
3716
|
|
|
3717
|
+
// const test = ref<boolean>(false)
|
|
3718
|
+
|
|
3711
3719
|
const tableConfig = ref({
|
|
3712
3720
|
date: {
|
|
3713
3721
|
minWidth: 100,
|