A very simple component to easily add a shadow beneath some text to aid readability when overlaying on an image.
Basically it's just adding some simple CSS to the test but it helps not having to remember the syntax.
npm install vue-shadow-text
In main.js
import ShadowText from 'vue-shadow-text'
createApp(App)
.use(ShadowText)
.mount('#app')
<shadow-text>This text is drop shadowed</shadow-text>
Specify the shadow color as a string, eg '#FF0000'
Specify the shadow size as a string, eg "10px" or "0.3em"