<template>
<m-pty ref="pty" title="dbapty" type="add"></m-pty>
</template> <script> import Dbipty from "~/views/Statics/Dbipty"; export default { name: "StaticsDbapty", components: { "m-pty": Dbipty }, data() { return {}; },
mounted() { this.$refs.pty.rules['ptaList'] = [ { type: 'array', required: true, min: 1, message: '地址信息栏不能为空' } ] }
}; </script> <style> </style>