admin管理员组文章数量:1346192
I'm working in a project that have different users with their logos. Based on the API call I want to load a different CSS with different colour palette.
Now I have a css
folder inside assets
folder with main.js
(with my custom font styles, etc) and another files in there for the custom color palette: <color-name>-palette.css
.
In my nuxt.config
I'm calling the CSS colour like that:
css: [
'~/assets/style/app.styl',
'~/assets/css/main.css',
'~/assets/css/orange-palette.css'
],
Is there any way to bind the CSS file depending on the URL path/API call instead of putting the path there?
I'm not sure if I can use it on templates as well, binding the CSS files in there. Is it possible?
Thanks
I'm working in a project that have different users with their logos. Based on the API call I want to load a different CSS with different colour palette.
Now I have a css
folder inside assets
folder with main.js
(with my custom font styles, etc) and another files in there for the custom color palette: <color-name>-palette.css
.
In my nuxt.config
I'm calling the CSS colour like that:
css: [
'~/assets/style/app.styl',
'~/assets/css/main.css',
'~/assets/css/orange-palette.css'
],
Is there any way to bind the CSS file depending on the URL path/API call instead of putting the path there?
I'm not sure if I can use it on templates as well, binding the CSS files in there. Is it possible?
Thanks
Share Improve this question asked Feb 15, 2019 at 2:46 Fabio ZanchiFabio Zanchi 9453 gold badges18 silver badges37 bronze badges2 Answers
Reset to default 8To load CSS files dynamically, use head()
instead of head: {}
. That way, the values can be dynamic. Take a look the code below with working demo at https://codesandbox.io/s/l4on5508zm
<template>
<section>
<h1>Index</h1>
<button @click="swap">swap</button>
<p v-text="cur" />
</section>
</template>
<script>
export default {
head() {
return {
link: [
{
rel: "stylesheet",
href: `/${this.cur}.css`
}
]
};
},
data() {
return {
cur: "light"
};
},
methods: {
swap() {
if (this.cur === "light") {
this.cur = "dark";
} else {
this.cur = "light";
}
}
}
};
</script>
Looking at the code snippet above, you can bring in the css file to use on your page dynamically via the head() function. You can change the CSS to be used on the fly right on any page based on user interaction (for instance my button click interaction).
You can use "head" in page ponent. https://codesandbox.io/s/xr55o4yqmq
<script>
export default {
head: {
link: [
{
rel: "stylesheet",
href: "/about.css"
}
]
}
};
</script>
本文标签: javascriptHow to use dynamic CSS files with NuxtStack Overflow
版权声明:本文标题:javascript - How to use dynamic CSS files with Nuxt? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743794867a2540242.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论