We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, first of all thank you very much for the framework, it works incredibly well besides being super simple.
I would like to know if there is any way to use the vue 3 setup script? I tried to adapt (as you can see below), but the styles were not injected.
<script setup lang="ts"> import cssText from "data-text:~/contents/plasmo-overlay.css" import type { PlasmoCSConfig, PlasmoGetStyle } from "plasmo" const config: PlasmoCSConfig = { matches: ["https://web.whatsapp.com/"] } const getStyle: PlasmoGetStyle = () => { const style = document.createElement("style") style.textContent = cssText return style } const plasmo = { getStyle } </script>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, first of all thank you very much for the framework, it works incredibly well besides being super simple.
I would like to know if there is any way to use the vue 3 setup script? I tried to adapt (as you can see below), but the styles were not injected.
The text was updated successfully, but these errors were encountered: