Your IP : 18.217.246.20


Current Path : /home/bitrix/ext_www/crm.klimatlend.ua/bitrix/js/ui/vue/router/
Upload File :
Current File : /home/bitrix/ext_www/crm.klimatlend.ua/bitrix/js/ui/vue/router/ui.vue.router.js

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

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

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

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

if (!window.BX)
{
	window.BX = {};
}

if (!window.BX.VueRouter)
{
	window.BX.VueRouter = BitrixVueRouter;
}