tre-dev

Results 8 comments of tre-dev

I'd need the same feature in order to change `background_color` and `theme_color` on runtime, based on whether the user has enabled dark-mode. Or is this already possible, @pi0? 🙏

Good question. It's also worth mentioning that seemingly it's faster to parse JSON. If I understood the video below correctly, it should be faster to parse the JSON as string...

Had the same error. Would be nice if that could be fixed on the plugin layer, just for others who might stumble upon the problem: `string.replace(':', '\\:')` works

This works for me: ``` // plugins/cookie-law.ts import Vue from 'vue' import CookieLaw from 'vue-cookie-law' export default () => { Vue.component('cookie-law', CookieLaw) } ``` ``` // nuxt.config.ts plugins: [ ......

I don't have an example, but experiencing the same problem after upgrading to Nuxt 2.15+ (from 2.14.12). My guess for what's happening is that custom components within custom components are...

@MartinMalinda @maoberlehner I'm experiencing a similar problem as above from Martin, where using `v-if` or `v-for` results in this line `this.$el.nodeType === Node.COMMENT_NODE` getting triggered, overwriting the `never` parameter. ```...

I'm migrating a project to noble ones and this function is missing, so it would be great for it to be added. In the meantime, will the code you linked...

Can this please be fixed? I really appreciate the work you're doing and this project, but this is a breaking bug and I'm not able to just manually modify the...