1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| import ConditionSelect from "@/components/ConditionForm/ConditionSelect"; import ConditionOption from "@/components/ConditionForm/ConditionOption";
export default { data() { return { list: [ { id: 1, value: "a" }, { id: 2, value: "b" }, { id: 3, value: "c" }, { id: 4, value: "d" }, { id: 5, value: "e" }, { id: 6, value: "f" }, { id: 7, value: "g" } ], loading: false, conditionForm: { type: [] } }; }, components: { ConditionSelect, ConditionOption }, methods: { selectSure() {} } };
|