This commit is contained in:
2025-03-28 09:37:10 +08:00
parent 505af229fc
commit 168895b5ac
15 changed files with 347 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
<script setup>
import {provide} from "vue";
const modalValue = defineModel();
provide('modelValue', modalValue);
</script>
<template>
<view>
<slot></slot>
</view>
</template>
<style scoped>
</style>