fix(button): defineComponent for ButtonGroup (#188)

This commit is contained in:
Jiaxun Li 2020-08-24 18:38:05 +08:00 committed by GitHub
parent dea58ffd09
commit 02409b882a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,9 @@
</div>
</template>
<script lang='ts'>
export default {
import { defineComponent } from 'vue'
export default defineComponent({
name: 'ElButtonGroup',
}
})
</script>