[Vuejs]-VueJS 2 Apps compiled in 1 11 October 2023 by thecoderscamp.com 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> [Vuejs]-How can I change the placeholder color from my el-input with Element UI Source:stackexchange.com