Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(custom-element): inject child components styles to custom element shadow root #11517

Merged
merged 1 commit into from
Aug 5, 2024

Conversation

yyx990803
Copy link
Member

@yyx990803 yyx990803 commented Aug 5, 2024

close #4662
close #6610
close #7941

This references both #6610 and #7942 but implements it in a way that minimizes changes to runtime-core and also handles HMR for child-injected styles, without relying on changes to @vitejs/plugin-vue.

With this change, a *.ce.vue component can import other *.ce.vue components and use them directly as Vue child components instead of custom elements. Child component's styles will be injected as native <style> tags into the root custom element's shadow root:

import { defineCustomElement } from 'vue'
import Root from './Root.ce.vue'

customElements.define('my-el', defineCustomElement(Root))
<!-- Root.ce.vue -->
<script setup>
import Child from './Child.ce.vue'
</script>
<!-- Child.ce.vue -->
<style>
div { color: red }; /* will be injected to Root.ce.vue's shadow root */
</style>

Copy link

github-actions bot commented Aug 5, 2024

Size Report

Bundles

File Size Gzip Brotli
runtime-dom.global.prod.js 97.6 kB (+7.46 kB) 37.1 kB (+2.52 kB) 33.3 kB (+2.21 kB)
vue.global.prod.js 155 kB (+8.43 kB) 56.8 kB (+2.8 kB) 50.6 kB (+2.51 kB)

Usages

Name Size Gzip Brotli
createApp 53.9 kB (+4.23 kB) 20.9 kB (+1.4 kB) 19 kB (+1.24 kB)
createSSRApp 57.8 kB (+4.61 kB) 22.5 kB (+1.54 kB) 20.5 kB (+1.36 kB)
defineCustomElement 57.4 kB (+5.54 kB) 22 kB (+1.82 kB) 20.1 kB (+1.65 kB)
overall 67.4 kB (+4.28 kB) 25.9 kB (+1.41 kB) 23.6 kB (+1.34 kB)

@yyx990803 yyx990803 merged commit 56c76a8 into minor Aug 5, 2024
11 checks passed
@yyx990803 yyx990803 deleted the ce-child-style branch August 5, 2024 12:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant