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

@@ -13,12 +13,12 @@
</template>
<script>
import fixedThead from './fixedThead'
import unfixedThead from './unfixedThead'
import FixedThead from './components/FixedThead'
import UnfixedThead from './components/UnfixedThead'
export default {
name: 'DynamicTable',
components: { fixedThead, unfixedThead }
components: { FixedThead, UnfixedThead }
}
</script>