index.js 356 Bytes
Newer Older
shuiluo's avatar
shuiluo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import Wraper from './wraper.vue';
import Table from './table.vue';
import MoreItem from './more_item.vue';

export const WraperMixins = {
    props: { hidden: Function, row: Object, type: String, refresh: Function },
    components: { Wraper },
    data() {
        return {
            form: {},
        };
    },
};

export { Wraper, Table, MoreItem };