[Solved] Scoped CSS in the quasar framework?
-
Is there any way to use vue files scoped CSS in quasar?
-
sure you can just use that in your style part in a .vue component file…or am i wrong?
-
Of course, this is a feature of vue-loader. Just add “scoped” to your style tag definition.
-
<template lang="html"> </template> <script> export default { } </script> <style lang="stylus" scoped> </style>