index.vue 414 B

123456789101112131415161718
  1. <script setup>
  2. // import PropsTest from './propsTest.vue';
  3. // import EditDrawer from '/@/views/shop-information/components/EditDrawer.vue';
  4. // const text = ref('1');
  5. // const isOpen = ref(false); // 定义 isOpen
  6. //
  7. // function handleOpen() {
  8. // isOpen.value = true; // 点击按钮后打开 dialog
  9. // }
  10. </script>
  11. <template>
  12. <div class="flex-grow" style="background-color: #3c3c3c;">
  13. asd
  14. </div>
  15. </template>