Skip to content

Commit

Permalink
fix(app-bar): remove unused component
Browse files Browse the repository at this point in the history
  • Loading branch information
BeADre committed Jul 21, 2021
1 parent a26f329 commit 4c70dbc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion packages/varlet-eslint-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ module.exports = {
'vue/no-v-html': 'off',
'vue/attributes-order': 'off',
'vue/require-default-prop': 'off',
'vue/no-unused-components': 'off',
'vue/require-explicit-emits': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
Expand Down
5 changes: 0 additions & 5 deletions packages/varlet-ui/src/app-bar/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,15 @@
<script lang="ts">
import { defineComponent } from 'vue'
import { props } from './props'
import Icon from '../icon'
export default defineComponent({
name: 'VarAppBar',
components: {
[Icon.name]: Icon,
},
props,
})
</script>

<style lang="less">
@import '../styles/common';
@import '../styles/elevation';
@import '../icon/icon';
@import './appBar';
</style>

0 comments on commit 4c70dbc

Please sign in to comment.