import Base from './base' class BulletinBoard extends Base { constructor (attr) { super(attr) this.noticeList = [{ key: '111', id: '', title: '' }] } } export default BulletinBoard