fix(vue): update imports for types and ionicons

Closes #18701
This commit is contained in:
Simon Wicki
2019-07-02 21:57:47 +02:00
committed by Mike Hartington
parent f16b118794
commit f56fea6a1f
6 changed files with 40 additions and 7 deletions

View File

@ -0,0 +1,9 @@
import { CreateElement, RenderContext } from 'vue';
export default {
name: 'IonPage',
functional: true,
render(h: CreateElement, { children }: RenderContext) {
return h('div', { class: { 'ion-page':true } }, children);
}
};