0 votes
in VueJS by

Is it possible to use custom inject name for CSS modules?

1 Answer

0 votes
by

You can customize the name of the injected computed property by giving the module attribute a value. This will be helpful to avoid overwriting injected styled if you have more than one <style> tags in a single *.vue component.

For example, you can use module attribute as below,

<style module="a">
  /* identifiers injected as a */
</style>

<style module="b">
  /* identifiers injected as b */
</style>

Related questions

0 votes
asked Sep 7, 2023 in VueJS by DavidAnderson
0 votes
asked Sep 7, 2023 in VueJS by DavidAnderson
...