import {examCategorys, examTypes} from "../../model/enum"; Component({ properties: { type: Number, item: Object }, data: { qs: examCategorys, examTypesEnum: examTypes, }, methods: { toExam(e) { this.triggerEvent("exam", {}) }, toShow(e) { this.triggerEvent("show", {}) }, } });