const minxin = { data() { return { options: [ { value: 1, label: "选择题" }, // { // value: 2, // label: "问答题" // }, { value: 3, label: "填空题" }, { value: 4, label: "添加文档" } ], options2: { 1: "选择题", 2: "问答题", 3: "填空题", 4: "添加文档" }, buttonOptions: [ { name: "分组", type: 1 }, { name: "分页", type: 2 } ] }; }, computed: {}, mounted() {}, activated() {}, methods: { depthCopy(s) { return s ? JSON.parse(JSON.stringify(s)) : ''; } } }; export default minxin;