createDecorator 自定义装饰器
二次确认import { MessageBox } from 'element-ui'
import { createDecorator } from 'vue-class-component'
export function Confirm(msg: any) {
return createDecorator(function (opts, handler) {
if (!opts.methods)
throw new Error(
'This decorator ...