plan-edit.vue 435 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="plan-edit">编辑计划</div>
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent, reactive, toRefs } from "vue";
  6. import {} from "@/api";
  7. import { message } from "ant-design-vue";
  8. const PlanEdit = defineComponent({
  9. setup() {
  10. const state = reactive({});
  11. return { ...toRefs(state) };
  12. },
  13. mounted() {},
  14. methods: {},
  15. });
  16. export default PlanEdit;
  17. </script>
  18. <style lang="scss" scoped>
  19. </style>