Patrik

Results 7 comments of Patrik

There's a sort of new way of defining SFC's using the Composition API: https://v3.vuejs.org/api/sfc-script-setup.html It's less verbose and very TypeScript friendly. This is where my question is going.. do you...

I never used this lib before but splitting it into separate components **seems** easier to use. That's how most of the other libs are doing it.

Hey @JustSteveKing I'd like to contribute and help moving it to Vue 3 / Composition API / and so on. I never used this lib before but I'd like to...

_ref_ and _reactive_ replace the _data_ property from the options API. The big benefit is that reactive state can be shared in an easy way across various components. There's no...

Getting the same error with version 0.9.79 ...it works with version 0.9.72 though. Try pinning the version in your package.json, like: ```json "@fawmi/vue-google-maps": "0.9.72", ```

I ran into this issue today, too. I overwrite the ProseImg.vue component in order to provide a caption and use Nuxt Image with the Markdown syntax. My (simplified) /content/components/ProseImg.vue: ```vue...

> Do you by any chance have a catch-all route, such as `pages/[...slug].vue`? If so, that's what's causing the `~/error.vue` to not be used, it takes precedence. In such a...