osmanli-yatirim 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -385,11 +385,11 @@ eval("var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPAC
|
|
|
385
385
|
/*!**********************************************************************************!*\
|
|
386
386
|
!*** ./node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js ***!
|
|
387
387
|
\**********************************************************************************/
|
|
388
|
-
/*! exports provided:
|
|
388
|
+
/*! exports provided: store, eSubeRouter, packageViop, packageStock, BuySellStocks, BuySellViopTransactions */
|
|
389
389
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
390
390
|
|
|
391
391
|
"use strict";
|
|
392
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _setPublicPath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPublicPath */ \"./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js\");\n/* harmony import */ var _entry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ~entry */ \"./src/install.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"
|
|
392
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _setPublicPath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPublicPath */ \"./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js\");\n/* harmony import */ var _entry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ~entry */ \"./src/install.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"store\", function() { return _entry__WEBPACK_IMPORTED_MODULE_1__[\"store\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eSubeRouter\", function() { return _entry__WEBPACK_IMPORTED_MODULE_1__[\"eSubeRouter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"packageViop\", function() { return _entry__WEBPACK_IMPORTED_MODULE_1__[\"packageViop\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"packageStock\", function() { return _entry__WEBPACK_IMPORTED_MODULE_1__[\"packageStock\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BuySellStocks\", function() { return _entry__WEBPACK_IMPORTED_MODULE_1__[\"BuySellStocks\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BuySellViopTransactions\", function() { return _entry__WEBPACK_IMPORTED_MODULE_1__[\"BuySellViopTransactions\"]; });\n\n\n\n\n\n//# sourceURL=webpack://OsmanliYatirimPackage/./node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js?");
|
|
393
393
|
|
|
394
394
|
/***/ }),
|
|
395
395
|
|
|
@@ -9880,18 +9880,6 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
|
9880
9880
|
|
|
9881
9881
|
/***/ }),
|
|
9882
9882
|
|
|
9883
|
-
/***/ "./node_modules/vue-router/dist/vue-router.esm.js":
|
|
9884
|
-
/*!********************************************************!*\
|
|
9885
|
-
!*** ./node_modules/vue-router/dist/vue-router.esm.js ***!
|
|
9886
|
-
\********************************************************/
|
|
9887
|
-
/*! exports provided: default */
|
|
9888
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9889
|
-
|
|
9890
|
-
"use strict";
|
|
9891
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/*!\n * vue-router v3.5.3\n * (c) 2021 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (!condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction extend (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nfunction decode (str) {\n try {\n return decodeURIComponent(str)\n } catch (err) {\n if (true) {\n warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n }\n }\n return str\n}\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n true && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n var value = extraQuery[key];\n parsedQuery[key] = Array.isArray(value)\n ? value.map(castQueryParamValue)\n : castQueryParamValue(value);\n }\n return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj\n ? Object.keys(obj)\n .map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n })\n .filter(function (x) { return x.length > 0; })\n .join('&')\n : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query))\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n (onlyPath || (\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params))\n )\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a).sort();\n var bKeys = Object.keys(b).sort();\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key, i) {\n var aVal = a[key];\n var bKey = bKeys[i];\n if (bKey !== key) { return false }\n var bVal = b[key];\n // query values can be null and undefined\n if (aVal == null || bVal == null) { return aVal === bVal }\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\nfunction handleRouteEntered (route) {\n for (var i = 0; i < route.matched.length; i++) {\n var record = route.matched[i];\n for (var name in record.instances) {\n var instance = record.instances[name];\n var cbs = record.enteredCbs[name];\n if (!instance || !cbs) { continue }\n delete record.enteredCbs[name];\n for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n }\n }\n }\n}\n\nvar View = {\n name: 'RouterView',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n // used by devtools to display a router-view badge\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n if (vnodeData.routerView) {\n depth++;\n }\n if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n var cachedData = cache[name];\n var cachedComponent = cachedData && cachedData.component;\n if (cachedComponent) {\n // #2301\n // pass props\n if (cachedData.configProps) {\n fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n }\n return h(cachedComponent, data, children)\n } else {\n // render previous empty view\n return h()\n }\n }\n\n var matched = route.matched[depth];\n var component = matched && matched.components[name];\n\n // render empty node if no matched route or no config component\n if (!matched || !component) {\n cache[name] = null;\n return h()\n }\n\n // cache component\n cache[name] = { component: component };\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // register instance in init hook\n // in case kept-alive component be actived when routes changed\n data.hook.init = function (vnode) {\n if (vnode.data.keepAlive &&\n vnode.componentInstance &&\n vnode.componentInstance !== matched.instances[name]\n ) {\n matched.instances[name] = vnode.componentInstance;\n }\n\n // if the route transition has already been confirmed then we weren't\n // able to call the cbs during confirmation as the component was not\n // registered yet, so we call it here.\n handleRouteEntered(route);\n };\n\n var configProps = matched.props && matched.props[name];\n // save route and configProps in cache\n if (configProps) {\n extend(cache[name], {\n route: route,\n configProps: configProps\n });\n fillPropsinData(component, data, route, configProps);\n }\n\n return h(component, data, children)\n }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n // resolve props\n var propsToPass = data.props = resolveProps(route, configProps);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n}\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (true) {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n params = params || {};\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n return filler(params, { pretty: true })\n } catch (e) {\n if (true) {\n // Fix #3072 no warn if `pathMatch` is string\n warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n } finally {\n // delete the 0 if it was added\n delete params[0];\n }\n}\n\n/* */\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next._normalized) {\n return next\n } else if (next.name) {\n next = extend({}, raw);\n var params = next.params;\n if (params && typeof params === 'object') {\n next.params = extend({}, params);\n }\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = extend({}, next);\n next._normalized = true;\n var params$1 = extend(extend({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params$1;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n } else if (true) {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n name: 'RouterLink',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n custom: Boolean,\n exact: Boolean,\n exactPath: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n ariaCurrentValue: {\n type: String,\n default: 'page'\n },\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(\n this.to,\n current,\n this.append\n );\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback =\n globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n var exactActiveClassFallback =\n globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass =\n this.activeClass == null ? activeClassFallback : this.activeClass;\n var exactActiveClass =\n this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n\n var compareTarget = route.redirectedFrom\n ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n classes[activeClass] = this.exact || this.exactPath\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1.replace) {\n router.replace(location, noop);\n } else {\n router.push(location, noop);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) {\n on[e] = handler;\n });\n } else {\n on[this.event] = handler;\n }\n\n var data = { class: classes };\n\n var scopedSlot =\n !this.$scopedSlots.$hasNormal &&\n this.$scopedSlots.default &&\n this.$scopedSlots.default({\n href: href,\n route: route,\n navigate: handler,\n isActive: classes[activeClass],\n isExactActive: classes[exactActiveClass]\n });\n\n if (scopedSlot) {\n if ( true && !this.custom) {\n !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an <a> element. Use the custom prop to remove this warning:\\n<router-link v-slot=\"{ navigate, href }\" custom></router-link>\\n');\n warnedCustomSlot = true;\n }\n if (scopedSlot.length === 1) {\n return scopedSlot[0]\n } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n if (true) {\n warn(\n false,\n (\"<router-link> with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n );\n }\n return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n }\n }\n\n if (true) {\n if ('tag' in this.$options.propsData && !warnedTagProp) {\n warn(\n false,\n \"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedTagProp = true;\n }\n if ('event' in this.$options.propsData && !warnedEventProp) {\n warn(\n false,\n \"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedEventProp = true;\n }\n }\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n } else {\n // find the first <a> child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the <a> is a static node\n a.isStatic = false;\n var aData = (a.data = extend({}, a.data));\n aData.on = aData.on || {};\n // transform existing events in both objects into arrays so we can push later\n for (var event in aData.on) {\n var handler$1 = aData.on[event];\n if (event in on) {\n aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n }\n }\n // append new listeners for router-link\n for (var event$1 in on) {\n if (event$1 in aData.on) {\n // on[event] is always a function\n aData.on[event$1].push(on[event$1]);\n } else {\n aData.on[event$1] = handler;\n }\n }\n\n var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n aAttrs.href = href;\n aAttrs['aria-current'] = ariaCurrentValue;\n } else {\n // doesn't have <a> child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('RouterView', View);\n Vue.component('RouterLink', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap,\n parentRoute\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n if (true) {\n // warn if routes do not include leading slashes\n var found = pathList\n // check for missing leading slash\n .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n if (found.length > 0) {\n var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (true) {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(\n path || name\n )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n );\n\n warn(\n // eslint-disable-next-line no-control-regex\n !/[^\\u0000-\\u007F]+/.test(path),\n \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n \"your path is correctly encoded before passing it to the router. Use \" +\n \"encodeURI to encode static segments of your path.\"\n );\n }\n\n var pathToRegexpOptions =\n route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n alias: route.alias\n ? typeof route.alias === 'string'\n ? [route.alias]\n : route.alias\n : [],\n instances: {},\n enteredCbs: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props:\n route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (true) {\n if (\n route.name &&\n !route.redirect &&\n route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n ) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n for (var i = 0; i < aliases.length; ++i) {\n var alias = aliases[i];\n if ( true && alias === path) {\n warn(\n false,\n (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n );\n // skip in dev to make it work\n continue\n }\n\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n }\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if ( true && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (\n path,\n pathToRegexpOptions\n) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (true) {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(\n !keys[key.name],\n (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n );\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (\n path,\n parent,\n strict\n) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function addRoute (parentOrRoute, route) {\n var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n // $flow-disable-line\n createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n // add aliases of parent\n if (parent && parent.alias.length) {\n createRouteMap(\n // $flow-disable-line route is defined if parent is\n parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n pathList,\n pathMap,\n nameMap,\n parent\n );\n }\n }\n\n function getRoutes () {\n return pathList.map(function (path) { return pathMap[path]; })\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (true) {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (true) {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (true) {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (true) {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoute: addRoute,\n getRoutes: getRoutes,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n if (key) {\n // Fix #1994: using * with props: true generates a param named 0\n params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nfunction genStateKey () {\n return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n return (_key = key)\n}\n\n/* */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Prevent browser scroll behavior on History popstate\n if ('scrollRestoration' in window.history) {\n window.history.scrollRestoration = 'manual';\n }\n // Fix for #1585 for Firefox\n // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n // window.location.protocol + '//' + window.location.host\n // location.host contains the port and location.hostname doesn't\n var protocolAndPath = window.location.protocol + '//' + window.location.host;\n var absolutePath = window.location.href.replace(protocolAndPath, '');\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, window.history.state);\n stateCopy.key = getStateKey();\n window.history.replaceState(stateCopy, '', absolutePath);\n window.addEventListener('popstate', handlePopState);\n return function () {\n window.removeEventListener('popstate', handlePopState);\n }\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (true) {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior.call(\n router,\n to,\n from,\n isPop ? position : null\n );\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll\n .then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n })\n .catch(function (err) {\n if (true) {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction handlePopState (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n : document.querySelector(shouldScroll.selector);\n\n if (el) {\n var offset =\n shouldScroll.offset && typeof shouldScroll.offset === 'object'\n ? shouldScroll.offset\n : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n // $flow-disable-line\n if ('scrollBehavior' in document.documentElement.style) {\n window.scrollTo({\n left: position.x,\n top: position.y,\n // $flow-disable-line\n behavior: shouldScroll.behavior\n });\n } else {\n window.scrollTo(position.x, position.y);\n }\n }\n}\n\n/* */\n\nvar supportsPushState =\n inBrowser &&\n (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && typeof window.history.pushState === 'function'\n })();\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, history.state);\n stateCopy.key = getStateKey();\n history.replaceState(stateCopy, '', url);\n } else {\n history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n redirected: 2,\n aborted: 4,\n cancelled: 8,\n duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.redirected,\n (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n to\n )) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n var error = createRouterError(\n from,\n to,\n NavigationFailureType.duplicated,\n (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n );\n // backwards compatible with the first introduction of Errors\n error.name = 'NavigationDuplicated';\n return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.cancelled,\n (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n )\n}\n\nfunction createNavigationAbortedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.aborted,\n (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createRouterError (from, to, type, message) {\n var error = new Error(message);\n error._isRouter = true;\n error.from = from;\n error.to = to;\n error.type = type;\n\n return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n if (typeof to === 'string') { return to }\n if ('path' in to) { return to.path }\n var location = {};\n propertiesToLog.forEach(function (key) {\n if (key in to) { location[key] = to[key]; }\n });\n return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n return (\n isError(err) &&\n err._isRouter &&\n (errorType == null || err.type === errorType)\n )\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n true && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n location,\n onComplete,\n onAbort\n) {\n var this$1 = this;\n\n var route;\n // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n try {\n route = this.router.match(location, this.current);\n } catch (e) {\n this.errorCbs.forEach(function (cb) {\n cb(e);\n });\n // Exception should still be thrown\n throw e\n }\n var prev = this.current;\n this.confirmTransition(\n route,\n function () {\n this$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1.ensureURL();\n this$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n\n // fire ready cbs once\n if (!this$1.ready) {\n this$1.ready = true;\n this$1.readyCbs.forEach(function (cb) {\n cb(route);\n });\n }\n },\n function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1.ready) {\n // Initial redirection should not mark the history as ready yet\n // because it's triggered by the redirection instead\n // https://github.com/vuejs/vue-router/issues/3225\n // https://github.com/vuejs/vue-router/issues/3331\n if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n this$1.ready = true;\n this$1.readyErrorCbs.forEach(function (cb) {\n cb(err);\n });\n }\n }\n }\n );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1 = this;\n\n var current = this.current;\n this.pending = route;\n var abort = function (err) {\n // changed after adding errors with\n // https://github.com/vuejs/vue-router/pull/3047 before that change,\n // redirect and aborted navigation would produce an err == null\n if (!isNavigationFailure(err) && isError(err)) {\n if (this$1.errorCbs.length) {\n this$1.errorCbs.forEach(function (cb) {\n cb(err);\n });\n } else {\n if (true) {\n warn(false, 'uncaught error during route navigation:');\n }\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n var lastRouteIndex = route.matched.length - 1;\n var lastCurrentIndex = current.matched.length - 1;\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n lastRouteIndex === lastCurrentIndex &&\n route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n ) {\n this.ensureURL();\n if (route.hash) {\n handleScroll(this.router, current, route, false);\n }\n return abort(createNavigationDuplicatedError(current, route))\n }\n\n var ref = resolveQueue(\n this.current.matched,\n route.matched\n );\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n var iterator = function (hook, next) {\n if (this$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n try {\n hook(route, current, function (to) {\n if (to === false) {\n // next(false) -> abort navigation, ensure current URL\n this$1.ensureURL(true);\n abort(createNavigationAbortedError(current, route));\n } else if (isError(to)) {\n this$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' &&\n (typeof to.path === 'string' || typeof to.name === 'string'))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort(createNavigationRedirectedError(current, route));\n if (typeof to === 'object' && to.replace) {\n this$1.replace(to);\n } else {\n this$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated);\n var queue = enterGuards.concat(this$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n this$1.pending = null;\n onComplete(route);\n if (this$1.router.app) {\n this$1.router.app.$nextTick(function () {\n handleRouteEntered(route);\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n this.current = route;\n this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n // clean up event listeners\n // https://github.com/vuejs/vue-router/issues/2341\n this.listeners.forEach(function (cleanupListener) {\n cleanupListener();\n });\n this.listeners = [];\n\n // reset current history route\n // https://github.com/vuejs/vue-router/issues/3294\n this.current = START;\n this.pending = null;\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect <base> tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated\n) {\n return extractGuards(\n activated,\n 'beforeRouteEnter',\n function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key)\n }\n )\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n if (typeof cb === 'function') {\n if (!match.enteredCbs[key]) {\n match.enteredCbs[key] = [];\n }\n match.enteredCbs[key].push(cb);\n }\n next(cb);\n })\n }\n}\n\n/* */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n function HTML5History (router, base) {\n History.call(this, router, base);\n\n this._startLocation = getLocation(this.base);\n }\n\n if ( History ) HTML5History.__proto__ = History;\n HTML5History.prototype = Object.create( History && History.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.setupListeners = function setupListeners () {\n var this$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1.base);\n if (this$1.current === START && location === this$1._startLocation) {\n return\n }\n\n this$1.transitionTo(location, function (route) {\n if (supportsScroll) {\n handleScroll(router, route, current, true);\n }\n });\n };\n window.addEventListener('popstate', handleRoutingEvent);\n this.listeners.push(function () {\n window.removeEventListener('popstate', handleRoutingEvent);\n });\n };\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n var pathLowerCase = path.toLowerCase();\n var baseLowerCase = base.toLowerCase();\n // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n // https://github.com/vuejs/vue-router/issues/3555\n // so we ensure the trailing slash in the base\n if (base && ((pathLowerCase === baseLowerCase) ||\n (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n function HashHistory (router, base, fallback) {\n History.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History ) HashHistory.__proto__ = History;\n HashHistory.prototype = Object.create( History && History.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n };\n var eventType = supportsPushState ? 'popstate' : 'hashchange';\n window.addEventListener(\n eventType,\n handleRoutingEvent\n );\n this.listeners.push(function () {\n window.removeEventListener(eventType, handleRoutingEvent);\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(cleanPath(base + '/#' + location));\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n // empty path\n if (index < 0) { return '' }\n\n href = href.slice(index + 1);\n\n return href\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n function AbstractHistory (router, base) {\n History.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History ) AbstractHistory.__proto__ = History;\n AbstractHistory.prototype = Object.create( History && History.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index + 1).concat(route);\n this$1.index++;\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index).concat(route);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(\n route,\n function () {\n var prev = this$1.current;\n this$1.index = targetIndex;\n this$1.updateRoute(route);\n this$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n },\n function (err) {\n if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n this$1.index = targetIndex;\n }\n }\n );\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n if (true) {\n warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n }\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback =\n mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (true) {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1 = this;\n\n true &&\n assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // set up app destroyed handler\n // https://github.com/vuejs/vue-router/issues/2639\n app.$once('hook:destroyed', function () {\n // clean out app from this.apps array once destroyed\n var index = this$1.apps.indexOf(app);\n if (index > -1) { this$1.apps.splice(index, 1); }\n // ensure we still have a main app or null if no apps\n // we do not release the router so it can be reused\n if (this$1.app === app) { this$1.app = this$1.apps[0] || null; }\n\n if (!this$1.app) { this$1.history.teardown(); }\n });\n\n // main app previously initialized\n // return as we don't need to set up new history listener\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History || history instanceof HashHistory) {\n var handleInitialScroll = function (routeOrError) {\n var from = history.current;\n var expectScroll = this$1.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll && 'fullPath' in routeOrError) {\n handleScroll(this$1, routeOrError, from, false);\n }\n };\n var setupListeners = function (routeOrError) {\n history.setupListeners();\n handleInitialScroll(routeOrError);\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupListeners,\n setupListeners\n );\n }\n\n history.listen(function (route) {\n this$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1.history.push(location, resolve, reject);\n })\n } else {\n this.history.push(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1.history.replace(location, resolve, reject);\n })\n } else {\n this.history.replace(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply(\n [],\n route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n })\n )\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n current = current || this.history.current;\n var location = normalizeLocation(to, current, append, this);\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n this.matcher.addRoute(parentOrRoute, route);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n if (true) {\n warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n }\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\nVueRouter.install = install;\nVueRouter.version = '3.5.3';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (VueRouter);\n\n\n//# sourceURL=webpack://OsmanliYatirimPackage/./node_modules/vue-router/dist/vue-router.esm.js?");
|
|
9892
|
-
|
|
9893
|
-
/***/ }),
|
|
9894
|
-
|
|
9895
9883
|
/***/ "./node_modules/vue-search-select/dist/VueSearchSelect.common.js":
|
|
9896
9884
|
/*!***********************************************************************!*\
|
|
9897
9885
|
!*** ./node_modules/vue-search-select/dist/VueSearchSelect.common.js ***!
|
|
@@ -13508,11 +13496,11 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _nod
|
|
|
13508
13496
|
/*!************************!*\
|
|
13509
13497
|
!*** ./src/install.js ***!
|
|
13510
13498
|
\************************/
|
|
13511
|
-
/*! exports provided:
|
|
13499
|
+
/*! exports provided: store, eSubeRouter, packageViop, packageStock, BuySellStocks, BuySellViopTransactions */
|
|
13512
13500
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13513
13501
|
|
|
13514
13502
|
"use strict";
|
|
13515
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _store_modules_viop_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/store/modules/viop.js */ \"./src/store/modules/viop.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"packageViop\", function() { return _store_modules_viop_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _store_modules_stock_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/store/modules/stock.js */ \"./src/store/modules/stock.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"packageStock\", function() { return _store_modules_stock_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _views_stock_BuySellStocks_index_vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/views/stock/BuySellStocks/index.vue */ \"./src/views/stock/BuySellStocks/index.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BuySellStocks\", function() { return _views_stock_BuySellStocks_index_vue__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _views_BuySellViopTransactions_index_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/views/BuySellViopTransactions/index.vue */ \"./src/views/BuySellViopTransactions/index.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BuySellViopTransactions\", function() { return _views_BuySellViopTransactions_index_vue__WEBPACK_IMPORTED_MODULE_3__[\"default\"]; });\n\n/* harmony import */ var
|
|
13503
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _store_modules_viop_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/store/modules/viop.js */ \"./src/store/modules/viop.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"packageViop\", function() { return _store_modules_viop_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _store_modules_stock_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/store/modules/stock.js */ \"./src/store/modules/stock.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"packageStock\", function() { return _store_modules_stock_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _views_stock_BuySellStocks_index_vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/views/stock/BuySellStocks/index.vue */ \"./src/views/stock/BuySellStocks/index.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BuySellStocks\", function() { return _views_stock_BuySellStocks_index_vue__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _views_BuySellViopTransactions_index_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/views/BuySellViopTransactions/index.vue */ \"./src/views/BuySellViopTransactions/index.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BuySellViopTransactions\", function() { return _views_BuySellViopTransactions_index_vue__WEBPACK_IMPORTED_MODULE_3__[\"default\"]; });\n\n/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./store */ \"./src/store/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"store\", function() { return _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"]; });\n\n/* harmony import */ var _router__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./router */ \"./src/router/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eSubeRouter\", function() { return _router__WEBPACK_IMPORTED_MODULE_5__[\"eSubeRouter\"]; });\n\n/* harmony import */ var _assets_scss_main_scss__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./assets/scss/main.scss */ \"./src/assets/scss/main.scss\");\n/* harmony import */ var _assets_scss_main_scss__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_assets_scss_main_scss__WEBPACK_IMPORTED_MODULE_6__);\n\n\n\n\n\n\n\nvar Package = {\n install: function install(Vue) {\n Vue.component(\"buy-sell-stocks\", _views_stock_BuySellStocks_index_vue__WEBPACK_IMPORTED_MODULE_2__[\"default\"]);\n Vue.component(\"buy-sell-viop-transactions\", _views_BuySellViopTransactions_index_vue__WEBPACK_IMPORTED_MODULE_3__[\"default\"]);\n }\n};\n\nif (typeof window !== \"undefined\" && window.Vue) {\n window.Vue.use(Package);\n}\n\n\n\n//# sourceURL=webpack://OsmanliYatirimPackage/./src/install.js?");
|
|
13516
13504
|
|
|
13517
13505
|
/***/ }),
|
|
13518
13506
|
|
|
@@ -13584,7 +13572,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
|
13584
13572
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13585
13573
|
|
|
13586
13574
|
"use strict";
|
|
13587
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"router\", function() { return router; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"routes\", function() { return routes; });\n/* harmony import */ var core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.object.to-string.js */ \"./node_modules/core-js/modules/es.object.to-string.js\");\n/* harmony import */ var core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_string_iterator_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.string.iterator.js */ \"./node_modules/core-js/modules/es.string.iterator.js\");\n/* harmony import */ var core_js_modules_es_string_iterator_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator_js__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator.js */ \"./node_modules/core-js/modules/web.dom-collections.iterator.js\");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! osmanli-veri-dagitim */ \"./node_modules/osmanli-veri-dagitim/dist/OsmanliPackage.umd.js\");\n/* harmony import */ var osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _views_Login__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../views/Login */ \"./src/views/Login/index.vue\");\n/* harmony import */ var _views_ForgotPassword__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../views/ForgotPassword */ \"./src/views/ForgotPassword/index.vue\");\n/* harmony import */ var _views_Homepage__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../views/Homepage */ \"./src/views/Homepage/index.vue\");\n/* harmony import */ var _views_stock_StockStatment__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../views/stock/StockStatment */ \"./src/views/stock/StockStatment/index.vue\");\n/* harmony import */ var _views_Layout__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @/views/Layout */ \"./src/views/Layout.vue\");\n\n\n\n\nvar router = osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_3__[\"router\"];\n\n\n\n\n // Vue.use(VueRouter);\n\nvar routes = [{\n path: \"/login\",\n name: \"Login\",\n component: _views_Login__WEBPACK_IMPORTED_MODULE_4__[\"default\"],\n meta: {\n requiresAuth: false\n }\n}, {\n path: \"/sifremi-unuttum\",\n name: \"ForgotPassword\",\n component: _views_ForgotPassword__WEBPACK_IMPORTED_MODULE_5__[\"default\"],\n meta: {\n requiresAuth: false\n }\n}, {\n path: \"/\",\n name: \"LoginSuccess\",\n redirect: \"/home\",\n component: _views_Layout__WEBPACK_IMPORTED_MODULE_8__[\"default\"],\n meta: {\n requiresAuth: true\n },\n children: [{\n path: \"/home\",\n name: \"Home\",\n component: _views_Homepage__WEBPACK_IMPORTED_MODULE_6__[\"default\"],\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/ekstre\",\n name: \"StockStatment\",\n component: _views_stock_StockStatment__WEBPACK_IMPORTED_MODULE_7__[\"default\"],\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/hisse-portfoyum/\",\n name: \"StockPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/StockPortfolio */ \"./src/views/stock/StockPortfolio/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/hisse-park\",\n name: \"StockParked\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/ParkedStock */ \"./src/views/stock/ParkedStock/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/emir-girisi:type?\",\n props: true,\n name: \"BuySellStock\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/BuySellStocks */ \"./src/views/stock/BuySellStocks/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/byf-emir-girisi:type?\",\n name: \"BuySellBYFStock\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/BuySellBYFStocks */ \"./src/views/stock/BuySellBYFStocks/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/hisse-emir-takip\",\n name: \"OrdersFallow\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/OrdersFallow */ \"./src/views/OrdersFallow/index.vue\"));\n },\n meta: {\n requiresAuth: true\n },\n reuse: true\n }, {\n path: \"/hisse/ozel-emir-takip:type?\",\n name: \"SpecialOrderEdit\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/SpecialOrderEdit */ \"./src/views/stock/SpecialOrderEdit/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/vadeli/vadeli-portfoyum\",\n name: \"FuturesTransactionsPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/FuturesTransactionsPortfolio */ \"./src/views/FuturesTransactionsPortfolio/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/vadeli/kar-zarar-raporum\",\n name: \"ProfitLossReport\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/ProfitLossReports */ \"./src/views/stock/ProfitLossReports/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/vadeli/emir-girisi:type?\",\n props: true,\n name: \"BuySellViopTransactions\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BuySellViopTransactions/index.vue */ \"./src/views/BuySellViopTransactions/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/kisisel-bilgiler\",\n name: \"PersonelInformation\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/PersonelInformation.vue */ \"./src/views/Profile/PersonelInformation.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/genel-ayarlar\",\n name: \"GeneralSettings\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/GeneralSettings */ \"./src/views/Profile/GeneralSettings/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/kredi-basvur\",\n name: \"ApplyCredit\",\n component: function component() {\n return __webpack_require__.e(/*! import() */ 0).then(__webpack_require__.bind(null, /*! ../views/Profile/ApplyCredit */ \"./src/views/Profile/ApplyCredit.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/sozlesmeler\",\n name: \"Contracts\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/Contracts */ \"./src/views/Profile/Contracts.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/uygunluk-yerindelik-testi\",\n name: \"SuitabilityTest\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/SuitabilityTest */ \"./src/views/Profile/SuitabilityTest.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/bulten-basvuru-takip\",\n name: \"Bulletin\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/Bulletin */ \"./src/views/Profile/Bulletin.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/varant/emir-girisi\",\n name: \"VarantOrder\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Varant/BuySellVarant */ \"./src/views/Varant/BuySellVarant.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/varant/portfoy\",\n name: \"VarantPortfoy\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Varant/index */ \"./src/views/Varant/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/filtreleme\",\n name: \"FundsFilter\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundFilters */ \"./src/views/Funds/FundFilters.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/portfolio\",\n name: \"FundsPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundPortfolio */ \"./src/views/Funds/FundPortfolio.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/filtreleme/alis\",\n name: \"BuyFund\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/BuySellFund */ \"./src/views/Funds/BuySellFund.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/takip\",\n name: \"FundWatch\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundWatch */ \"./src/views/Funds/FundWatch.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/ekstre\",\n name: \"FundExtre\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundExtre */ \"./src/views/Funds/FundExtre.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono/bono-portfoyum\",\n name: \"BondPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BondPortfolio */ \"./src/views/Bonds/BondPortfolio.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/ovd/home\",\n name: \"OvdHome\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/HomeOvd */ \"./src/views/ovd/HomeOvd.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/customer/:customerNumber?\",\n name: \"CustomerDetail\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/HomeOvd */ \"./src/views/ovd/HomeOvd.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/buy-data-package/:customerNumber?\",\n name: \"BuyDataPackage\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/BuyDataPackage */ \"./src/views/ovd/BuyDataPackage.vue\"));\n },\n props: true,\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/checkout/:customerNumber/:packageNumber?\",\n name: \"Checkout\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/Checkout */ \"./src/views/ovd/Checkout.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/doviz\",\n name: \"CurrencyTable\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/CurrencyTable */ \"./src/views/BankingOperations/CurrencyTable.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/doviz-al-sat\",\n name: \"CurrencyBuySell\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/CurrencyBuySell */ \"./src/views/BankingOperations/CurrencyBuySell.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fx-viop-teminat-aktarimi\",\n name: \"FxViopWarrantTransfer\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/FxViopWarrantTransfer */ \"./src/views/BankingOperations/FxViopWarrantTransfer/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/para-transferi\",\n name: \"DefinedBankAccounts\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/MoneyTransfer/DefinedBankAccounts.vue */ \"./src/views/BankingOperations/MoneyTransfer/DefinedBankAccounts.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/transfer-izleme\",\n name: \"TransferTracking\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/TransferTracking.vue */ \"./src/views/BankingOperations/TransferTracking.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hesap-tanimi\",\n name: \"AccountDefinition\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/MoneyTransfer/AccountDefinition.vue */ \"./src/views/BankingOperations/MoneyTransfer/AccountDefinition.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/para-transferi-talebi\",\n name: \"TransferRequest\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/TransferRequest */ \"./src/views/BankingOperations/TransferRequest.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/gerceklesen-bono-tahvil-islemleri\",\n name: \"BondProcessedList\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BondProcessedList */ \"./src/views/Bonds/BondProcessedList.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono-al\",\n name: \"BuyBond\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BuyBond */ \"./src/views/Bonds/BuyBond.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono-al/:id\",\n name: \"BuyBondDetail\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BuyBondDetail */ \"./src/views/Bonds/BuyBondDetail.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/faydali-bilgiler\",\n name: \"UsefulInformation\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/UsefulInformation */ \"./src/views/Profile/UsefulInformation/UsefulInformation.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/viop-limitler\",\n name: \"ViopLimits\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/ViopLimits */ \"./src/views/Profile/UsefulInformation/ViopLimits.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/viop-teminatlar\",\n name: \"ViopGuarantee\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/ViopGuarantee */ \"./src/views/Profile/UsefulInformation/ViopGuarantee.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/viop-teminat-hesaplama\",\n name: \"ViopGuaranteeCalculation\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/ViopGuaranteeCalculation */ \"./src/views/Profile/UsefulInformation/ViopGuaranteeCalculation.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/kusurat-sat\",\n name: \"FractionalShareSale\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/FractionalShareSale/ */ \"./src/views/stock/FractionalShareSale/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/menkul-transferi\",\n name: \"SecuritiesTransfer\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/SecuritiesTransfer.vue */ \"./src/views/BankingOperations/SecuritiesTransfer.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/halka-arz-talep-anasayfa\",\n name: \"PublicOfferingHomePage\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/PublicOffers/PublicOfferingHomePage */ \"./src/views/PublicOffers/PublicOfferingHomePage.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/halka-arz-talep-izleme\",\n name: \"RequestTracking\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/PublicOffers/RequestTracking */ \"./src/views/PublicOffers/RequestTracking.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/halka-arz-talep-girisi\",\n name: \"PublicOfferRequestEntry\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/PublicOffers/PublicOfferRequestEntry */ \"./src/views/PublicOffers/PublicOfferRequestEntry.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono-ekstresi\",\n name: \"BondExtract\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Extracts/BondExtract */ \"./src/views/Extracts/BondExtract.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/:extract-ekstresi\",\n name: \"OptionAndWarrantExtract\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Extracts/OptionAndWarrantExtract */ \"./src/views/Extracts/OptionAndWarrantExtract.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/katki-payi-degisikligi\",\n name: \"ContributionMarginChange\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BES/ContributionMarginChange */ \"./src/views/BES/ContributionMarginChange.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }]\n}];\nrouter.beforeEach(function (to, from, next) {\n if (to.matched.some(function (record) {\n return record.meta.requiresAuth;\n })) {\n var isAuth = localStorage.getItem(\"isAuth\");\n\n if (isAuth) {\n next();\n } else {\n next({\n path: \"/login\"\n });\n }\n } else {\n next();\n }\n});\n\n\n//# sourceURL=webpack://OsmanliYatirimPackage/./src/router/index.js?");
|
|
13575
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"router\", function() { return router; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"routes\", function() { return routes; });\n/* harmony import */ var core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.iterator.js */ \"./node_modules/core-js/modules/es.array.iterator.js\");\n/* harmony import */ var core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.object.to-string.js */ \"./node_modules/core-js/modules/es.object.to-string.js\");\n/* harmony import */ var core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.promise.js */ \"./node_modules/core-js/modules/es.promise.js\");\n/* harmony import */ var core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_string_iterator_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.string.iterator.js */ \"./node_modules/core-js/modules/es.string.iterator.js\");\n/* harmony import */ var core_js_modules_es_string_iterator_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator_js__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator.js */ \"./node_modules/core-js/modules/web.dom-collections.iterator.js\");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! osmanli-veri-dagitim */ \"./node_modules/osmanli-veri-dagitim/dist/OsmanliPackage.umd.js\");\n/* harmony import */ var osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var _views_Login__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../views/Login */ \"./src/views/Login/index.vue\");\n/* harmony import */ var _views_ForgotPassword__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../views/ForgotPassword */ \"./src/views/ForgotPassword/index.vue\");\n/* harmony import */ var _views_Homepage__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../views/Homepage */ \"./src/views/Homepage/index.vue\");\n/* harmony import */ var _views_stock_StockStatment__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../views/stock/StockStatment */ \"./src/views/stock/StockStatment/index.vue\");\n/* harmony import */ var _views_Layout__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @/views/Layout */ \"./src/views/Layout.vue\");\n\n\n\n\n\n\nvar router = osmanli_veri_dagitim__WEBPACK_IMPORTED_MODULE_5__[\"router\"];\n\n\n\n\n // Vue.use(VueRouter);\n\nvar routes = [{\n path: \"/login\",\n name: \"Login\",\n component: _views_Login__WEBPACK_IMPORTED_MODULE_6__[\"default\"],\n meta: {\n requiresAuth: false\n }\n}, {\n path: \"/sifremi-unuttum\",\n name: \"ForgotPassword\",\n component: _views_ForgotPassword__WEBPACK_IMPORTED_MODULE_7__[\"default\"],\n meta: {\n requiresAuth: false\n }\n}, {\n path: \"/\",\n name: \"LoginSuccess\",\n redirect: \"/home\",\n component: _views_Layout__WEBPACK_IMPORTED_MODULE_10__[\"default\"],\n meta: {\n requiresAuth: true\n },\n children: [{\n path: \"/home\",\n name: \"Home\",\n component: _views_Homepage__WEBPACK_IMPORTED_MODULE_8__[\"default\"],\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/ekstre\",\n name: \"StockStatment\",\n component: _views_stock_StockStatment__WEBPACK_IMPORTED_MODULE_9__[\"default\"],\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/hisse-portfoyum/\",\n name: \"StockPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/StockPortfolio */ \"./src/views/stock/StockPortfolio/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/hisse-park\",\n name: \"StockParked\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/ParkedStock */ \"./src/views/stock/ParkedStock/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/emir-girisi:type?\",\n props: true,\n name: \"BuySellStock\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/BuySellStocks */ \"./src/views/stock/BuySellStocks/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/byf-emir-girisi:type?\",\n name: \"BuySellBYFStock\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/BuySellBYFStocks */ \"./src/views/stock/BuySellBYFStocks/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hisse/hisse-emir-takip\",\n name: \"OrdersFallow\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/OrdersFallow */ \"./src/views/OrdersFallow/index.vue\"));\n },\n meta: {\n requiresAuth: true\n },\n reuse: true\n }, {\n path: \"/hisse/ozel-emir-takip:type?\",\n name: \"SpecialOrderEdit\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/SpecialOrderEdit */ \"./src/views/stock/SpecialOrderEdit/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/vadeli/vadeli-portfoyum\",\n name: \"FuturesTransactionsPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/FuturesTransactionsPortfolio */ \"./src/views/FuturesTransactionsPortfolio/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/vadeli/kar-zarar-raporum\",\n name: \"ProfitLossReport\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/ProfitLossReports */ \"./src/views/stock/ProfitLossReports/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/vadeli/emir-girisi:type?\",\n props: true,\n name: \"BuySellViopTransactions\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BuySellViopTransactions/index.vue */ \"./src/views/BuySellViopTransactions/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/kisisel-bilgiler\",\n name: \"PersonelInformation\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/PersonelInformation.vue */ \"./src/views/Profile/PersonelInformation.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/genel-ayarlar\",\n name: \"GeneralSettings\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/GeneralSettings */ \"./src/views/Profile/GeneralSettings/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/kredi-basvur\",\n name: \"ApplyCredit\",\n component: function component() {\n return __webpack_require__.e(/*! import() */ 0).then(__webpack_require__.bind(null, /*! ../views/Profile/ApplyCredit */ \"./src/views/Profile/ApplyCredit.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/sozlesmeler\",\n name: \"Contracts\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/Contracts */ \"./src/views/Profile/Contracts.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/uygunluk-yerindelik-testi\",\n name: \"SuitabilityTest\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/SuitabilityTest */ \"./src/views/Profile/SuitabilityTest.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/tanimlamalar/bulten-basvuru-takip\",\n name: \"Bulletin\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/Bulletin */ \"./src/views/Profile/Bulletin.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/varant/emir-girisi\",\n name: \"VarantOrder\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Varant/BuySellVarant */ \"./src/views/Varant/BuySellVarant.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/varant/portfoy\",\n name: \"VarantPortfoy\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Varant/index */ \"./src/views/Varant/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/filtreleme\",\n name: \"FundsFilter\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundFilters */ \"./src/views/Funds/FundFilters.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/portfolio\",\n name: \"FundsPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundPortfolio */ \"./src/views/Funds/FundPortfolio.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/filtreleme/alis\",\n name: \"BuyFund\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/BuySellFund */ \"./src/views/Funds/BuySellFund.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/takip\",\n name: \"FundWatch\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundWatch */ \"./src/views/Funds/FundWatch.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fon/ekstre\",\n name: \"FundExtre\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Funds/FundExtre */ \"./src/views/Funds/FundExtre.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono/bono-portfoyum\",\n name: \"BondPortfolio\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BondPortfolio */ \"./src/views/Bonds/BondPortfolio.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/ovd/home\",\n name: \"OvdHome\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/HomeOvd */ \"./src/views/ovd/HomeOvd.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/customer/:customerNumber?\",\n name: \"CustomerDetail\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/HomeOvd */ \"./src/views/ovd/HomeOvd.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/buy-data-package/:customerNumber?\",\n name: \"BuyDataPackage\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/BuyDataPackage */ \"./src/views/ovd/BuyDataPackage.vue\"));\n },\n props: true,\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/checkout/:customerNumber/:packageNumber?\",\n name: \"Checkout\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/ovd/Checkout */ \"./src/views/ovd/Checkout.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/doviz\",\n name: \"CurrencyTable\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/CurrencyTable */ \"./src/views/BankingOperations/CurrencyTable.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/doviz-al-sat\",\n name: \"CurrencyBuySell\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/CurrencyBuySell */ \"./src/views/BankingOperations/CurrencyBuySell.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/fx-viop-teminat-aktarimi\",\n name: \"FxViopWarrantTransfer\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/FxViopWarrantTransfer */ \"./src/views/BankingOperations/FxViopWarrantTransfer/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/para-transferi\",\n name: \"DefinedBankAccounts\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/MoneyTransfer/DefinedBankAccounts.vue */ \"./src/views/BankingOperations/MoneyTransfer/DefinedBankAccounts.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/transfer-izleme\",\n name: \"TransferTracking\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/TransferTracking.vue */ \"./src/views/BankingOperations/TransferTracking.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/hesap-tanimi\",\n name: \"AccountDefinition\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/MoneyTransfer/AccountDefinition.vue */ \"./src/views/BankingOperations/MoneyTransfer/AccountDefinition.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/para-transferi-talebi\",\n name: \"TransferRequest\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/TransferRequest */ \"./src/views/BankingOperations/TransferRequest.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/gerceklesen-bono-tahvil-islemleri\",\n name: \"BondProcessedList\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BondProcessedList */ \"./src/views/Bonds/BondProcessedList.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono-al\",\n name: \"BuyBond\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BuyBond */ \"./src/views/Bonds/BuyBond.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono-al/:id\",\n name: \"BuyBondDetail\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Bonds/BuyBondDetail */ \"./src/views/Bonds/BuyBondDetail.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/faydali-bilgiler\",\n name: \"UsefulInformation\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/UsefulInformation */ \"./src/views/Profile/UsefulInformation/UsefulInformation.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/viop-limitler\",\n name: \"ViopLimits\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/ViopLimits */ \"./src/views/Profile/UsefulInformation/ViopLimits.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/viop-teminatlar\",\n name: \"ViopGuarantee\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/ViopGuarantee */ \"./src/views/Profile/UsefulInformation/ViopGuarantee.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/viop-teminat-hesaplama\",\n name: \"ViopGuaranteeCalculation\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Profile/UsefulInformation/ViopGuaranteeCalculation */ \"./src/views/Profile/UsefulInformation/ViopGuaranteeCalculation.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/kusurat-sat\",\n name: \"FractionalShareSale\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/stock/FractionalShareSale/ */ \"./src/views/stock/FractionalShareSale/index.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/menkul-transferi\",\n name: \"SecuritiesTransfer\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BankingOperations/SecuritiesTransfer.vue */ \"./src/views/BankingOperations/SecuritiesTransfer.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/halka-arz-talep-anasayfa\",\n name: \"PublicOfferingHomePage\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/PublicOffers/PublicOfferingHomePage */ \"./src/views/PublicOffers/PublicOfferingHomePage.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/halka-arz-talep-izleme\",\n name: \"RequestTracking\",\n props: true,\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/PublicOffers/RequestTracking */ \"./src/views/PublicOffers/RequestTracking.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/halka-arz-talep-girisi\",\n name: \"PublicOfferRequestEntry\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/PublicOffers/PublicOfferRequestEntry */ \"./src/views/PublicOffers/PublicOfferRequestEntry.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/bono-ekstresi\",\n name: \"BondExtract\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Extracts/BondExtract */ \"./src/views/Extracts/BondExtract.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/:extract-ekstresi\",\n name: \"OptionAndWarrantExtract\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/Extracts/OptionAndWarrantExtract */ \"./src/views/Extracts/OptionAndWarrantExtract.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }, {\n path: \"/katki-payi-degisikligi\",\n name: \"ContributionMarginChange\",\n component: function component() {\n return Promise.all(/*! import() | about */[__webpack_require__.e(\"vendors~about\"), __webpack_require__.e(\"about\")]).then(__webpack_require__.bind(null, /*! ../views/BES/ContributionMarginChange */ \"./src/views/BES/ContributionMarginChange.vue\"));\n },\n meta: {\n requiresAuth: true\n }\n }]\n}];\nrouter.beforeEach(function (to, from, next) {\n if (to.matched.some(function (record) {\n return record.meta.requiresAuth;\n })) {\n var isAuth = localStorage.getItem(\"isAuth\");\n\n if (isAuth) {\n next();\n } else {\n next({\n path: \"/login\"\n });\n }\n } else {\n next();\n }\n});\n\n\n//# sourceURL=webpack://OsmanliYatirimPackage/./src/router/index.js?");
|
|
13588
13576
|
|
|
13589
13577
|
/***/ }),
|
|
13590
13578
|
|