12345678910111213141516171819202122 |
- <template>
- <div class="plan-edit">编辑计划</div>
- </template>
- <script lang="ts">
- import { defineComponent, reactive, toRefs } from "vue";
- import {} from "@/api";
- import { message } from "ant-design-vue";
- const PlanEdit = defineComponent({
- setup() {
- const state = reactive({});
- return { ...toRefs(state) };
- },
- mounted() {},
- methods: {},
- });
- export default PlanEdit;
- </script>
- <style lang="scss" scoped>
- </style>
|