I recently needed a ⌘+k launcher for a site i am developing.
I tried a few vue plugins but couldnt find an appropriate one.
In the end i ended up building one.
<script> // Detect dark theme var iframe = document.getElementById('tweet-1820111785640268056-178'); if (document.body.className.includes('dark-theme')) { iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1820111785640268056&theme=dark" } </script>
The above is the detailed content of +K / Cmd-K Vueomponent. For more information, please follow other related articles on the PHP Chinese website!