Style tag in meta plugin supported?
-
I tried using meta like this
style: { test: { innerHtml: `border: 10px solid #000`, }, },
this does not seem to work, but the meta plugin docs say one should be able to add/remove/change <style> and <script> tags.
Am i doing something wrong here? -
Did you install it (add
'Meta'
to theplugins
prop inquasar.conf.js
)?Scott
-
@s-molinari yes, i am using it throughout my app, only the style element seems to not work
-
does it have something to do with this functions in meta.js?
function bodyFilter (name) { return ['class', 'style'].includes(name) === false }
-
Have you fixed that @hexillion ? Got that issue too.