feat(custom-elements): add experimental custom elements build (#22863)

Co-authored-by: Liam DeBeasi <liamdebeasi@icloud.com>
This commit is contained in:
Adam Bradley
2021-02-11 11:08:00 -06:00
committed by GitHub
parent 19d63f6243
commit 0de75afbef
61 changed files with 7258 additions and 9441 deletions

View File

@ -73,7 +73,9 @@
<script>
customElements.whenDefined('ion-tabs').then(async () => {
const tabs = document.querySelector('ion-tabs');
await tabs.componentOnReady();
if (tabs.componentOnReady) {
await tabs.componentOnReady();
}
await tabs.select('tab-three');
});
</script>