[Vuejs]-VueJS 2 Apps compiled in 1

0👍

You can import your stylesheets dynamically in the script tag like this:

<script setup>
import { ref, watchEffect } from "vue";

const theme = ref(2);

watchEffect(() => {
  import(`./assets/base${theme.value}.css`);
});
</script>

enter image description here

Leave a comment