Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-i18n-routing

Package Overview
Dependencies
Maintainers
1
Versions
239
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-i18n-routing - npm Package Compare versions

Comparing version 0.13.1-9e99efc to 0.13.1-cc5593b

2

dist/vue-i18n-routing.d.ts

@@ -760,3 +760,3 @@ import type { Composer } from '@intlify/vue-i18n-bridge';

*/
export declare type Strategies = typeof STRATEGIES[keyof typeof STRATEGIES];
export declare type Strategies = (typeof STRATEGIES)[keyof typeof STRATEGIES];

@@ -763,0 +763,0 @@ /**

@@ -20,3 +20,3 @@ var VueI18nRouting = function(exports, VueRouter3, vueDemi, vueI18nBridge) {

/*!
* shared v9.3.0-beta.16
* shared v9.3.0-beta.25
* (c) 2023 kazuya kawaguchi

@@ -687,3 +687,5 @@ * Released under the MIT License.

if (_route[0] === "/") {
_route = { path: route };
const [path, search] = route.split("?");
const query = Object.fromEntries(new URLSearchParams(search));
_route = { path, query };
} else {

@@ -690,0 +692,0 @@ _route = { name: route };

@@ -23,3 +23,3 @@ "use strict";

/*!
* shared v9.3.0-beta.16
* shared v9.3.0-beta.25
* (c) 2023 kazuya kawaguchi

@@ -690,3 +690,5 @@ * Released under the MIT License.

if (_route[0] === "/") {
_route = { path: route };
const [path, search] = route.split("?");
const query = Object.fromEntries(new URLSearchParams(search));
_route = { path, query };
} else {

@@ -693,0 +695,0 @@ _route = { name: route };

{
"name": "vue-i18n-routing",
"description": "The i18n routing with using vue-i18n",
"version": "0.13.1-9e99efc",
"version": "0.13.1-cc5593b",
"dependencies": {

@@ -6,0 +6,0 @@ "@intlify/shared": "next",

@@ -9,3 +9,3 @@ # vue-i18n-routing

About details, See the [API References]('./api.md)
About details, See the [API References](./api.md)

@@ -12,0 +12,0 @@ ## ©️ License

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc