1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-09-01 13:33:58 +08:00

25 lines
490 B
Vue

<template>
<div class="app-container">
<div style="margin:0 0 5px 20px">
{{ $t('table.dynamicTips1') }}
</div>
<fixed-thead />
<div style="margin:30px 0 5px 20px">
{{ $t('table.dynamicTips2') }}
</div>
<unfixed-thead />
</div>
</template>
<script>
import FixedThead from './components/FixedThead'
import UnfixedThead from './components/UnfixedThead'
export default {
name: 'DynamicTable',
components: { FixedThead, UnfixedThead }
}
</script>