Your IP : 3.135.219.165


Current Path : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/ui/vue/router/src/
Upload File :
Current File : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/ui/vue/router/src/vue.router.bitrix.js

/**
 * Bitrix Vuex manager
 *
 * @package bitrix
 * @subpackage ui
 * @copyright 2001-2019 Bitrix
 */

import {VueRouterVendor} from "./router.js";

class BitrixVueRouter
{
	/**
	 * Create new VueRouter instance
	 *
	 * @param {Object} params - route config
	 *
	 * @see https://router.vuejs.org/
	 */

	static create(params)
	{
		return new VueRouterVendor(params);
	}

	/**
	 * Provides the installed version of Vuex as a string.
	 *
	 * @returns {String}
	 */
	static version()
	{
		return VueRouter.version;
	}
}

export {
	BitrixVueRouter as VueRouter,
	VueRouterVendor
};