Jerry Jäppinen

Results 18 comments of Jerry Jäppinen

Related: https://github.com/nuxt-community/svg-module/issues/86

Thanks @cyruscollier . I switched to `vite-svg-loader` which seems to work fine as well: ```js import svgLoader from 'vite-svg-loader' export default defineNuxtConfig({ vite: { plugins: [ svgLoader({ /* ... */...

> @jerryjappinen But vite-svg-loader cannot into dynamic import. Like > ``` > setup(props) { > const currentIcon = computed(() => { > return defineAsyncComponent(() => import(`@/assets/icons/16/${props.name}.svg?component`)) > }).value > >...

Thanks for opening the issue. I upgrade the dependencies from time to time, but I haven't tried out Webpack 4 yet. From my experience with upgrade from 2 to 3,...

Just bumped into this. Wow, looks like an old issue. In my use case, I might be conditionally either loading an external base image, or creating a new blank one....

One point about the route updates. Let's say I have a sidebar panel with a menu that I want to close as the user clicks on any link. I can...

> You could fetch the data in mounted: This is of course true, but then my app becomes basically just a normal SPA and not an SEO-friendly universal/prerendered app -...

> Is this a duplicate of #2568 ? I knew I wasn't the first one! It's close but not really an exact duplicate. I'd be happy to see the changes...

> You could also use a plugin for client side. Which fetches the data after route transition: Yeah I can see how that could work. I could set up named...

Some common patterns from other apps (I've synced this behavior across design apps and code editors): - Alt/Option click folder in file tree: close/open all descendants of that folder (no...