24 lines
233 B
Vue
24 lines
233 B
Vue
|
|
<template>
|
||
|
|
<a-layout>
|
||
|
|
|
||
|
|
</a-layout>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import base from './base'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'table',
|
||
|
|
extends: base,
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
dataSource: [],
|
||
|
|
loading: false,
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|