What would be the proper way to do this in Vue?
const brand = 'op';
switch(brand)
{
case 'ed':
<style lang="sass" src="./ed.css"></style>
break;
case 'op':
<style lang="sass" src="./op.css"></style>
break;
case 'go':
<style lang="sass" src="./go.css"></style>
break;
}
I have the style tags in the Vue app but I know I can't use the switch in that part other than the script tags.
srcattribute. You probably want a<link>tag.