Evan You
Evan You
closed via #1883 - will release ~~patch~~ minor soon (note the new minor will require Vue 3.2+).
Files in `dist` are built files that are only created when publishing, but not considered source code.
closed via #1883 - will release ~~patch~~ minor soon (note the new minor will require Vue 3.2+).
fixed by 397e9fb in 4.1
I haven't got time to fully investigate this topic, but if anything I'd stay away from directives. I'd suggest looking into [custom compiler modules](https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#options) that are more powerful then directives....
I've tested this branch in the main Vue docs and aside the from `/@theme` alias removal, everything else seems to work fine. LGTM after the Vue alias resolution is restored.
Since we are going to squash the commits, leaving a note about the fix in 3b2d90a: ## Summary 1. Do not alias Vue during SSR build (since all deps are...
This is done using the "static data import" feature: https://github.com/vuejs/docs/blob/main/src/api/api.data.ts I believe it's not fully documented at the moment, but essentially: - Create a file ending in `.data.ts` or `.data.js`...
Personally, I've always thought that `vue-router`'s design isn't perfectly suited for mobile development as well. Most web apps perform full content replacement on navigation, while mobile apps often uses a...
It still feels like a hack to me. This is basically a piece of global state (`showErrorOverlay`) that is not stored in the URL, why does it have to be...