import { css } from "@linaria/core"; import { defineComponent, reactive } from "vue"; import { useList } from "@/modules/list"; import { Button, Card, Form, Input, Radio, InputNumber } from "ant-design-vue"; const layout = { labelCol: { span: 6 }, wrapperCol: { span: 18 }, }; export default defineComponent({ setup() { const { store, showModal } = useList(); const formState = reactive({ ...store.animate, }); const submit = () => { console.log(1); }; return () => (
横向 纵向
); }, }); const ViewStyle = css` padding: 20px; .setting_form { width: 300px; } `;