lg_frontend/templates/table.vue

24 lines
233 B
Vue
Raw Permalink Normal View History

2024-02-18 11:15:17 +00:00
<template>
<a-layout>
</a-layout>
</template>
<script>
import base from './base'
export default {
name: 'table',
extends: base,
data () {
return {
dataSource: [],
loading: false,
}
}
}
</script>