refactor: standardized files name (#1884)

style-guide: https://panjiachen.github.io/vue-element-admin-site/guide/advanced/style-guide.html#style-guide
This commit is contained in:
花裤衩
2019-04-12 17:13:27 +08:00
committed by GitHub
parent a6be6af46d
commit fdea6c684a
66 changed files with 74 additions and 75 deletions

View File

@@ -0,0 +1,24 @@
<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>