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

Empty styles on custom elements (.ce.vue) #168

Open
5 tasks done
sytzez opened this issue Nov 12, 2024 · 1 comment
Open
5 tasks done

Empty styles on custom elements (.ce.vue) #168

sytzez opened this issue Nov 12, 2024 · 1 comment

Comments

@sytzez
Copy link

sytzez commented Nov 12, 2024

Describe the bug

Hi, I'm trying to create custom elements (web components) using Vue, following this example from the Vue website.

The linked section explains how to apply the styles from an SFC inside the shadow root of the custom element. It states that by changing the file extension to .ce.vue, the file should export an object with a .styles property which contains the styles for the SFC.

See my attempt here: https://github.com/sytzez/vue-ce-test/blob/master/src/index.js

When I try this approach with unplugin-vue and esbuild, the .styles property always contains [ {} ] (An array containing an empty object). And because of this, Vue does not inject the right styles inside the shadow DOM of the element.

I can get the right styles by setting shadowRoot: false on the element and importing the .css file generated by esbuild in my HTML file. However, this solution does not work for our purposes as we absolutely require shadow root for our components. Without shadow root we cannot use <slot> in our custom components.

Reproduction

https://github.com/sytzez/vue-ce-test

System Info

System:
    OS: Linux 6.8 Ubuntu 22.04.5 LTS 22.04.5 LTS (Jammy Jellyfish)
    CPU: (4) x64 Intel(R) Core(TM) i5-7400 CPU @ 3.00GHz
    Memory: 1.96 GB / 15.49 GB
    Container: Yes
    Shell: 5.8.1 - /bin/zsh
  Binaries:
    Node: 18.19.0 - ~/.nvm/versions/node/v18.19.0/bin/node
    Yarn: 1.22.21 - ~/.nvm/versions/node/v18.19.0/bin/yarn
    npm: 10.2.3 - ~/.nvm/versions/node/v18.19.0/bin/npm
  Browsers:
    Chrome: 129.0.6668.70

Used Package Manager

npm

Validations

  • Follow our Code of Conduct
  • Read the Contributing Guide.
  • Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
  • Check that this is a concrete bug. For Q&A, please open a GitHub Discussion instead.
  • The provided reproduction is a minimal reproducible of the bug.
@sytzez
Copy link
Author

sytzez commented Nov 15, 2024

Hi, just an update. I've been investigating this a bit and I've been comparing the code of this repo to that of https://github.com/vitejs/vite-plugin-vue.

On this line &inline is added to the import statement that imports CSS from the SFC, with the intention of importing it as a raw string. While Vite supports this, ES Build doesn't. And I don't think there's a way to make ES Build import that as a raw string, at least not out of the box. See https://stackoverflow.com/questions/76206575/esbuild-import-css-as-a-string

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

No branches or pull requests

1 participant