43 lines
815 B
Vue
43 lines
815 B
Vue
<script lang="ts">
|
|
export default {
|
|
name: "LayCollapse",
|
|
};
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import { withDefaults, provide, ref, watch } from "vue";
|
|
|
|
export interface LayCollapseProps {
|
|
modelValue?: number | string | [];
|
|
accordion?: boolean;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<LayCollapseProps>(), {
|
|
modelValue: () => [],
|
|
accordion: false,
|
|
});
|
|
|
|
// 监听传入的值
|
|
watch(
|
|
() => props.modelValue,
|
|
(val, oldVal) => {
|
|
activeValues.value = ([] as any[]).concat(val);
|
|
}
|
|
);
|
|
const emit = defineEmits(["update:modelValue", "change"]);
|
|
|
|
const activeValues = ref<Array<any>>(([] as any[]).concat(props.modelValue));
|
|
|
|
provide("layCollapse", {
|
|
accordion: props.accordion,
|
|
activeValues,
|
|
emit,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="layui-collapse">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|