
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
remix-router-vue
Advanced tools
A Vue UI layer for nested + data-driven routing via @remix-run/router
Vue UI implementation of the react-router-dom
API (driven by @remix-run/router
)
Warning
This project is in an early stage so use with caution!
npm install remix-router-vue
# or
yarn add remix-router-vue
<Await>
has a few small differences based on the Vue <Suspense>
component
errorElement
prop, <Await>
leverages an #error
scoped slot to render errors. For an example, please refer to the /defer
route in the Vue reference application.<Await>
will not capture and hand render-errors to the #error
slot because render errors in Vue propagate to the parent components of <Suspense>
, and <Await>
is a child component. See Suspense Error Handling for more detailsPlease refer to the beta docs for react-router@6.4
for reference on the APIs in question, but the following is a simple example of how to leverage remix-router-vue
in a Vue application. You may also refer to the reference application for a more extensive usage example.
App.vue
<script setup>
import { createBrowserRouter, RouterProvider } from "remix-router-vue";
import { h } from "vue";
import Layout from "./Layout.vue";
import Index, { loader as indexLoader } from "./Index.vue";
// Define your routes in a nested array, providing loaders and actions where
// appropriate
const routes = [
{
path: "/",
element: Layout,
children: [
{
index: true,
loader: indexLoader,
element: Index,
},
],
},
];
// Create a router from your routes
const router = createBrowserRouter(routes);
// Provide a fallbackElement to be displayed during the initial data load
const fallbackElement = () => h("p", "Loading..."),
</script>
<template>
<RouterProvider :router="router" :fallbackElement="fallbackElement" />
</template>
Layout.vue
<script setup>
import { Outlet } from "remix-router-vue";
</script>
<template>
<!-- Render global-layout stuff here, such as a header and nav bar -->
<h1>Welcome to my Vue Application!</h1>
<nav><!-- nav links --></nav>
<!-- Render matching child routes via <Outlet /> -->
<Outlet />
</template>
Index.vue
<script>
import { useLoaderData } from 'remix-router-vue';
export async function loader() {
// Load your data here and return whatever you need access to in the UI
return { ... };
};
</script>
<script setup>
// Use the useLoaderData composition API method to access the data returned
// from your loader
const data = useLoaderData();
</script>
<template>
<p>Check out my data!</p>
<pre>{{ data }}</pre>
</template>
FAQs
A Vue UI layer for nested + data-driven routing via @remix-run/router
The npm package remix-router-vue receives a total of 0 weekly downloads. As such, remix-router-vue popularity was classified as not popular.
We found that remix-router-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.