v-shared-element
Declarative shared-element transitions for Vue.js (by justintaddei)
router
🚦 The official router for Vue.js (by vuejs)
v-shared-element | router | |
---|---|---|
1 | 21 | |
465 | 3,894 | |
- | 1.4% | |
8.9 | 9.2 | |
5 days ago | 10 days ago | |
TypeScript | TypeScript | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
v-shared-element
Posts with mentions or reviews of v-shared-element.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-01.
-
Vue Contextual Transition
There is https://github.com/justintaddei/v-shared-element which is close to but not quite the solution I wanted.
router
Posts with mentions or reviews of router.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-06-30.
-
Reliable Component Testing with Vitest's Browser Mode and Playwright
You should have a Vue project set up with Vue Router and Vitest. If you haven't done so, refer to this post to set up the essentisal Vitest testing environment for your Vue project.
-
Comparing Frontend Technologies: ReactJS vs VueJS
Flexibility: Vue is also flexible but provides more built-in solutions out of the box, such as Vue Router for navigation and Vuex for state management. This can reduce the need for additional libraries and make development more straightforward.
-
Create a Fullstack app with Vue and Go (And Tailwindcss v4)
Let's install Vue.js using Vite. For the router we will use vue-router. For styling we will try the alpha version of the future Tailwind v4 release.
-
Vue3 Navigation, State Management and Form handling
VueJs use vue-router to manage navigation within our apps. Let's create another page and programatically navigate between two pages.
-
Dynamic page title and description with Vue Router
If you would like to learn more about the basic usage of Vue Router, check out the official documentation here.
-
Building Simple CRM with Vue: Getting Started with Project Setup
"src" folder, is the most interesting for us because it is a place where the application source code is typically stored, we will work with this folder in the future and consider its files more detailed. But shortly: "assets" folder contains our global style files, images and icons; the "components" folder as it sounds and will store our app components; "router" and "store" folders were created for "Vue Router" and "Pinia" modules; "views" folder will contain our pages components.
-
Component Testing in Vue: Using routing for states
This post assumes you have a Vue project set up wit Vue Router and Playwright component testing. If you haven't done so, please refer to the previous post to set up Playwright with component testing for your Vue project.
- Using URL to store state in Vue
-
Better DX in Vue apps with Vite Devtools
Routes tab is a feature integrated with Vue Router, allowing you to view the registered routes and their details.
-
How to use router inside axios interceptors. React and Vue
Whenever I made changes to my component, hot reloading didn't occur, and an error appeared in the console: [hmr] Failed to reload /src/[Component.vue]. This could be due to syntax errors or importing non-existent modules. (see errors above).. To learn more about this error, you can refer to the GitHub issue here.