tags if necessary and renest the characters directly into the element rather than inside the word
\r\n if (node._isSplit) {\r\n node._next = node.nextSibling\r\n node.parentNode.appendChild(node) // put it at the end to keep the order correct.\r\n } else if (node.parentNode._isSplit) {\r\n node._parent = node.parentNode\r\n if (!node.previousSibling && node.firstChild) {\r\n node.firstChild._isFirst = true\r\n }\r\n if (node.nextSibling && node.nextSibling.textContent === ' ' && !node.nextSibling.nextSibling) { // if the last node inside a nested element is just a space (like Tnested ), remove it otherwise it'll get placed in the wrong order. Don't remove it right away, though, because we need to sense when words/characters are before a space like _isBeforeWordDelimiter(). Removing it now would make that a false negative.\r\n spaceNodesToRemove.push(node.nextSibling)\r\n }\r\n node._next = (node.nextSibling && node.nextSibling._isFirst) ? null : node.nextSibling\r\n node.parentNode.removeChild(node)\r\n nodes.splice(i--, 1)\r\n l--\r\n } else if (!isChild) {\r\n offset = (!node.nextSibling && _isBeforeWordDelimiter(node.parentNode, element, wordDelimiter)) // if this is the last letter in the word (and we're not breaking by lines and not positioning things absolutely), we need to add a space afterwards so that the characters don't just mash together\r\n if (node.parentNode._parent) {\r\n node.parentNode._parent.appendChild(node)\r\n }\r\n if (offset) {\r\n node.parentNode.appendChild(_doc.createTextNode(' '))\r\n }\r\n if (vars.span) {\r\n node.style.display = 'inline' // so that word breaks are honored properly.\r\n }\r\n charArray.push(node)\r\n }\r\n } else if (node.parentNode._isSplit && !node._isSplit && node.innerHTML !== '') {\r\n wordArray.push(node)\r\n } else if (chars && !node._isSplit) {\r\n if (vars.span) {\r\n node.style.display = 'inline'\r\n }\r\n charArray.push(node)\r\n }\r\n }\r\n\r\n i = spaceNodesToRemove.length\r\n while (--i > -1) {\r\n spaceNodesToRemove[i].parentNode.removeChild(spaceNodesToRemove[i])\r\n }\r\n\r\n if (lines) {\r\n // the next 7 lines just give us the line width in the most reliable way and figure out the left offset (if position isn't relative or absolute). We must set the width along with text-align to ensure everything works properly for various alignments.\r\n if (absolute) {\r\n lineNode = _doc.createElement(tag)\r\n element.appendChild(lineNode)\r\n lineWidth = lineNode.offsetWidth + 'px'\r\n offset = (lineNode.offsetParent === element) ? 0 : element.offsetLeft\r\n element.removeChild(lineNode)\r\n }\r\n style = element.style.cssText\r\n element.style.cssText = 'display:none;' // to improve performance, set display:none on the element so that the browser doesn't have to worry about reflowing or rendering while we're renesting things. We'll revert the cssText later.\r\n // we can't use element.innerHTML = \"\" because that causes IE to literally delete all the nodes and their content even though we've stored them in an array! So we must loop through the children and remove them.\r\n while (element.firstChild) {\r\n element.removeChild(element.firstChild)\r\n }\r\n addWordSpaces = (wordDelimiter === ' ' && (!absolute || (!words && !chars)))\r\n for (i = 0; i < lines.length; i++) {\r\n curLine = lines[i]\r\n lineNode = _doc.createElement(tag)\r\n lineNode.style.cssText = 'display:block;text-align:' + textAlign + ';position:' + (absolute ? 'absolute;' : 'relative;')\r\n if (linesClass) {\r\n lineNode.className = linesClass + (iterateLine ? i + 1 : '')\r\n }\r\n lineArray.push(lineNode)\r\n l = curLine.length\r\n for (j = 0; j < l; j++) {\r\n if (curLine[j].nodeName !== 'BR') {\r\n node = curLine[j]\r\n lineNode.appendChild(node)\r\n if (addWordSpaces && node._wordEnd) {\r\n lineNode.appendChild(_doc.createTextNode(' '))\r\n }\r\n if (absolute) {\r\n if (j === 0) {\r\n lineNode.style.top = (node._y) + 'px'\r\n lineNode.style.left = (paddingLeft + offset) + 'px'\r\n }\r\n node.style.top = '0px'\r\n if (offset) {\r\n node.style.left = (node._x - offset) + 'px'\r\n }\r\n }\r\n }\r\n }\r\n if (l === 0) { // if there are no nodes in the line (typically meaning there were two consecutive
tags, just add a non-breaking space so that things display properly.\r\n lineNode.innerHTML = ' '\r\n } else if (!words && !chars) {\r\n _deWordify(lineNode)\r\n _swapText(lineNode, String.fromCharCode(160), ' ')\r\n }\r\n if (absolute) {\r\n lineNode.style.width = lineWidth\r\n lineNode.style.height = node._h + 'px'\r\n }\r\n element.appendChild(lineNode)\r\n }\r\n element.style.cssText = style\r\n }\r\n\r\n // if everything shifts to being position:absolute, the container can collapse in terms of height or width, so fix that here.\r\n if (absolute) {\r\n if (origHeight > element.clientHeight) {\r\n element.style.height = (origHeight - padTopAndBottom) + 'px'\r\n if (element.clientHeight < origHeight) { // IE8 and earlier use a different box model - we must include padding and borders\r\n element.style.height = (origHeight + borderTopAndBottom) + 'px'\r\n }\r\n }\r\n if (origWidth > element.clientWidth) {\r\n element.style.width = (origWidth - padLeftAndRight) + 'px'\r\n if (element.clientWidth < origWidth) { // IE8 and earlier use a different box model - we must include padding and borders\r\n element.style.width = (origWidth + borderLeftAndRight) + 'px'\r\n }\r\n }\r\n }\r\n _pushReversed(allChars, charArray)\r\n _pushReversed(allWords, wordArray)\r\n _pushReversed(allLines, lineArray)\r\n }\r\n var _splitRawText = function (element, vars, wordStart, charStart) {\r\n var tag = vars.span ? 'span' : 'div'\r\n var types = vars.type || vars.split || 'chars,words,lines'\r\n // words = (types.indexOf(\"words\") !== -1),\r\n var chars = (types.indexOf('chars') !== -1)\r\n var absolute = (vars.position === 'absolute' || vars.absolute === true)\r\n var wordDelimiter = vars.wordDelimiter || ' '\r\n var space = wordDelimiter !== ' ' ? '' : (absolute ? ' ' : ' ')\r\n var wordEnd = vars.span ? '' : '
'\r\n var wordIsOpen = true\r\n var specialChars = vars.specialChars ? (typeof (vars.specialChars) === 'function' ? vars.specialChars : _findSpecialChars) : null // specialChars can be an array or a function. For performance reasons, we always set this local \"specialChars\" to a function to which we pass the remaining text and whatever the original vars.specialChars was so that if it's an array, it works with the _findSpecialChars() function.\r\n var text; var splitText; var i; var j; var l; var character; var hasTagStart; var emojiPair1; var emojiPair2; var testResult\r\n var container = _doc.createElement('div')\r\n var parent = element.parentNode\r\n\r\n parent.insertBefore(container, element)\r\n container.textContent = element.nodeValue\r\n parent.removeChild(element)\r\n element = container\r\n text = _getText(element)\r\n hasTagStart = text.indexOf('<') !== -1\r\n\r\n if (vars.reduceWhiteSpace !== false) {\r\n text = text.replace(_multipleSpacesExp, ' ').replace(_stripExp, '')\r\n }\r\n if (hasTagStart) {\r\n text = text.split('<').join('{{LT}}') // we can't leave \"<\" in the string, or when we set the innerHTML, it can be interpreted as a node\r\n }\r\n l = text.length\r\n splitText = ((text.charAt(0) === ' ') ? space : '') + wordStart()\r\n for (i = 0; i < l; i++) {\r\n character = text.charAt(i)\r\n if (specialChars && (testResult = specialChars(text.substr(i), vars.specialChars))) { // look for any specialChars that were declared. Remember, they can be passed in like {specialChars:[\"मी\", \"पा\", \"है\"]} or a function could be defined instead. Either way, the function should return the number of characters that should be grouped together for this \"character\".\r\n character = text.substr(i, testResult || 1)\r\n splitText += (chars && character !== ' ') ? charStart() + character + '' + tag + '>' : character\r\n i += testResult - 1\r\n } else if (character === wordDelimiter && text.charAt(i - 1) !== wordDelimiter && i) {\r\n splitText += wordIsOpen ? wordEnd : ''\r\n wordIsOpen = false\r\n while (text.charAt(i + 1) === wordDelimiter) { // skip over empty spaces (to avoid making them words)\r\n splitText += space\r\n i++\r\n }\r\n if (i === l - 1) {\r\n splitText += space\r\n } else if (text.charAt(i + 1) !== ')') {\r\n splitText += space + wordStart()\r\n wordIsOpen = true\r\n }\r\n } else if (character === '{' && text.substr(i, 6) === '{{LT}}') {\r\n splitText += chars ? charStart() + '{{LT}}' + '' + tag + '>' : '{{LT}}'\r\n i += 5\r\n } else if ((character.charCodeAt(0) >= _emojiStart && character.charCodeAt(0) <= _emojiEnd) || (text.charCodeAt(i + 1) >= 0xFE00 && text.charCodeAt(i + 1) <= 0xFE0F)) { // special emoji characters use 2 or 4 unicode characters that we must keep together.\r\n emojiPair1 = _emojiPairCode(text.substr(i, 2))\r\n emojiPair2 = _emojiPairCode(text.substr(i + 2, 2))\r\n j = ((emojiPair1 >= _emojiRegionStart && emojiPair1 <= _emojiRegionEnd && emojiPair2 >= _emojiRegionStart && emojiPair2 <= _emojiRegionEnd) || (emojiPair2 >= _emojiModStart && emojiPair2 <= _emojiModEnd)) ? 4 : 2\r\n splitText += (chars && character !== ' ') ? charStart() + text.substr(i, j) + '' + tag + '>' : text.substr(i, j)\r\n i += j - 1\r\n } else {\r\n splitText += (chars && character !== ' ') ? charStart() + character + '' + tag + '>' : character\r\n }\r\n }\r\n element.outerHTML = splitText + (wordIsOpen ? wordEnd : '')\r\n if (hasTagStart) {\r\n _swapText(parent, '{{LT}}', '<') // note: don't perform this on \"element\" because that gets replaced with all new elements when we set element.outerHTML.\r\n }\r\n }\r\n var _split = function (element, vars, wordStart, charStart) {\r\n var children = _slice(element.childNodes)\r\n var l = children.length\r\n var absolute = (vars.position === 'absolute' || vars.absolute === true)\r\n var i; var child\r\n\r\n if (element.nodeType !== 3 || l > 1) {\r\n vars.absolute = false\r\n for (i = 0; i < l; i++) {\r\n child = children[i]\r\n if (child.nodeType !== 3 || /\\S+/.test(child.nodeValue)) {\r\n if (absolute && child.nodeType !== 3 && _getStyle(child, 'display', null, true) === 'inline') { // if there's a child node that's display:inline, switch it to inline-block so that absolute positioning works properly (most browsers don't report offsetTop/offsetLeft properly inside a
for example)\r\n child.style.display = 'inline-block'\r\n child.style.position = 'relative'\r\n }\r\n child._isSplit = true\r\n _split(child, vars, wordStart, charStart) // don't split lines on child elements\r\n }\r\n }\r\n vars.absolute = absolute\r\n element._isSplit = true\r\n return\r\n }\r\n\r\n _splitRawText(element, vars, wordStart, charStart)\r\n }\r\n var p = SplitText.prototype\r\n\r\n p.split = function (vars) {\r\n if (this.isSplit) {\r\n this.revert()\r\n }\r\n this.vars = vars = vars || this.vars\r\n this._originals.length = this.chars.length = this.words.length = this.lines.length = 0\r\n var i = this.elements.length\r\n var tag = vars.span ? 'span' : 'div'\r\n var wordStart = _cssClassFunc(vars.wordsClass, tag)\r\n var charStart = _cssClassFunc(vars.charsClass, tag)\r\n var origHeight; var origWidth; var e\r\n // we split in reversed order so that if/when we position:absolute elements, they don't affect the position of the ones after them in the document flow (shifting them up as they're taken out of the document flow).\r\n while (--i > -1) {\r\n e = this.elements[i]\r\n this._originals[i] = e.innerHTML\r\n origHeight = e.clientHeight\r\n origWidth = e.clientWidth\r\n _split(e, vars, wordStart, charStart)\r\n _setPositionsAfterSplit(e, vars, this.chars, this.words, this.lines, origWidth, origHeight)\r\n }\r\n this.chars.reverse()\r\n this.words.reverse()\r\n this.lines.reverse()\r\n this.isSplit = true\r\n return this\r\n }\r\n\r\n p.revert = function () {\r\n if (!this._originals) {\r\n /* eslint-disable no-throw-literal */\r\n throw (\"revert() call wasn't scoped properly.\")\r\n }\r\n var i = this._originals.length\r\n while (--i > -1) {\r\n this.elements[i].innerHTML = this._originals[i]\r\n }\r\n this.chars = []\r\n this.words = []\r\n this.lines = []\r\n this.isSplit = false\r\n return this\r\n }\r\n\r\n SplitText.selector = window.$ || window.jQuery || function (e) {\r\n var selector = window.$ || window.jQuery\r\n if (selector) {\r\n SplitText.selector = selector\r\n return selector(e)\r\n }\r\n return (typeof (document) === 'undefined') ? e : (document.querySelectorAll ? document.querySelectorAll(e) : document.getElementById((e.charAt(0) === '#') ? e.substr(1) : e))\r\n }\r\n SplitText.version = '0.6.0'\r\n})(_gsScope)\r\n\r\nexport const SplitText = _gsScope.SplitText\r\nexport { SplitText as default }\r\n","\r\n \r\n \r\n {{ text }}\r\n
\r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navlink.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navlink.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Navlink.vue?vue&type=template&id=3575e0be&scoped=true&\"\nimport script from \"./Navlink.vue?vue&type=script&lang=js&\"\nexport * from \"./Navlink.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Navlink.vue?vue&type=style&index=0&id=3575e0be&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"3575e0be\",\n null\n \n)\n\nexport default component.exports","/* eslint-disable */\r\nconst Slide = function(t) {\r\n function e(t, e, i, s, n) {\r\n this.id = t,\r\n this.onChange = e,\r\n this.page = 0,\r\n this.sens = 0,\r\n this.prefix = \"/\",\r\n this.total = 1,\r\n this.canSlide = !0,\r\n this.hasSwipe = i,\r\n this.progress = s,\r\n this.mc = null,\r\n this.dom = {},\r\n this.index = n,\r\n this.setDom(),\r\n // this.addListeners(),\r\n this.dom.container && (this.total = this.dom.container.getAttribute(\"data-total\") ? parseInt(this.dom.container.getAttribute(\"data-total\")) : this.total,\r\n this.total),\r\n this.progress && this.initProgress()\r\n }\r\n return e.prototype.setDom = function() {\r\n this.dom.container = document.getElementById(this.id),\r\n this.dom.label = document.getElementById(this.id + \"-label\"),\r\n this.dom.prev = document.getElementById(this.id + \"-prev\"),\r\n this.dom.next = document.getElementById(this.id + \"-next\"),\r\n this.progress && (this.dom.progress = document.getElementById(this.id + \"-progress\"),\r\n this.dom.progressInner = this.dom.progress.querySelector(\".slider-progress-inner\"))\r\n }\r\n ,\r\n // e.prototype.addListeners = function() {\r\n // $(this.dom.prev).on(\"click\", this.onPagination.bind(this)),\r\n // $(this.dom.next).on(\"click\", this.onPagination.bind(this)),\r\n // this.hasSwipe && (N66.Device.IS_MOBILE || N66.Device.IS_TABLET) && (this.mc = new Hammer(this.dom.container),\r\n // this.mc.on(\"swipe\", this.onSwipeSlider.bind(this)))\r\n // }\r\n // ,\r\n // e.prototype.removeListeners = function() {\r\n // $(this.dom.prev).off(\"click\", this.onPagination.bind(this)),\r\n // $(this.dom.next).off(\"click\", this.onPagination.bind(this))\r\n // }\r\n // ,\r\n e.prototype.onPagination = function(t) {\r\n this.sens = t.currentTarget === this.dom.prev ? -1 : 1,\r\n this.set()\r\n }\r\n ,\r\n e.prototype.onSwipeSlider = function(t) {\r\n this.sens = t.direction === 2 ? 1 : -1,\r\n this.set()\r\n }\r\n ,\r\n e.prototype.setPage = function(t) {\r\n (t = this.limit(t)) !== this.page && (this.sens = t > this.page ? 1 : -1,\r\n this.page = t,\r\n this.dom.label && (this.dom.label.innerHTML = this.page + 1 + this.prefix + this.total),\r\n this.onChange && this.onChange(this.page, this.sens),\r\n this.progress && this.onProgress())\r\n }\r\n ,\r\n e.prototype.next = function() {\r\n this.sens = 1,\r\n this.set()\r\n }\r\n ,\r\n e.prototype.set = function() {\r\n if (this.canSlide) {\r\n this.canSlide = !1;\r\n var t = this.page + this.sens;\r\n (t = this.limit(t)) != this.page && (this.page = t,\r\n this.dom.label && (this.dom.label.innerHTML = this.page + 1 + this.prefix + this.total),\r\n this.onChange && this.onChange(this.page, this.sens),\r\n this.progress && this.onProgress())\r\n }\r\n }\r\n ,\r\n e.prototype.initProgress = function() {\r\n this.widthProgress = this.dom.progress.offsetWidth,\r\n this.widthProgressInner = this.widthProgress / this.total\r\n }\r\n ,\r\n e.prototype.onProgress = function() {\r\n var t = this.widthProgressInner * Math.ceil(this.page + 1)\r\n , e = new TimelineLite;\r\n this.page <= 0 && 1 == this.sens ? e.to(this.dom.progressInner, 1, {\r\n width: 0,\r\n x: this.widthProgress,\r\n ease: Quart.easeInOut\r\n }).set(this.dom.progressInner, {\r\n x: 0\r\n }, 1).to(this.dom.progressInner, 1, {\r\n width: t,\r\n ease: Quart.easeInOut\r\n }, 1) : this.page + 1 >= this.total && -1 == this.sens ? e.to(this.dom.progressInner, 1, {\r\n width: 0,\r\n ease: Quart.easeInOut\r\n }).set(this.dom.progressInner, {\r\n x: this.widthProgress\r\n }, 1).to(this.dom.progressInner, 1, {\r\n width: t,\r\n x: 0,\r\n ease: Quart.easeInOut\r\n }, 1) : TweenLite.to(this.dom.progressInner, 1, {\r\n width: t,\r\n ease: Quart.easeInOut\r\n }, 0)\r\n }\r\n ,\r\n e.prototype.limit = function(t) {\r\n return t = (t = t >= this.total ? 0 : t) < 0 ? this.total - 1 : t\r\n }\r\n ,\r\n e.prototype.resize = function(t, e) {}\r\n ,\r\n e.prototype.clean = function() {\r\n for (var t in this.removeListeners(),\r\n this)\r\n this[t] = null\r\n }\r\n ,\r\n e\r\n}(window)\r\n\r\nexport default Slide\r\n","/* eslint-disable */\r\nimport Scrollbar from 'smooth-scrollbar'\r\n// import Scrollbar, { ScrollbarPlugin } from 'smooth-scrollbar'\r\nimport r1 from './r1.js'\r\nimport c11 from './c11.js'\r\n\r\n// class ModalPlugin extends ScrollbarPlugin {\r\n// static pluginName = 'modal'\r\n\r\n// static defaultOptions = {\r\n// open: false\r\n// }\r\n\r\n// transformDelta (delta) {\r\n// return this.options.open ? { x: 0, y: 0 } : delta\r\n// }\r\n// }\r\n\r\n// Scrollbar.use(ModalPlugin /* OverscrollPlugin */)\r\n\r\nvar i = function () {\r\n function i(e) {\r\n !function (e, t) {\r\n if (!(e instanceof t))\r\n throw new TypeError(\"Cannot call a class as a function\")\r\n }(this, i),\r\n this.scroll = this.scroll.bind(this),\r\n Scrollbar && (this.root = e.container,\r\n this.root && (this.views = []))\r\n }\r\n return r1(i, [{\r\n key: \"scroll\",\r\n value: function (e) {\r\n window.currentScrollTop = e.offset.y\r\n // window.currentScrollDirection = e.direction.y;\r\n for (var t = 0; t < this.views.length; t++)\r\n this.views[t].fn(e)\r\n }\r\n }], [{\r\n key: \"init\",\r\n value: function (e) {\r\n var t = i.instance;\r\n window.currentScrollTop = 0,\r\n window.scrollBar = Scrollbar.init(t.root, e),\r\n window.scrollBar.addListener(t.scroll)\r\n }\r\n }, {\r\n key: \"debug\",\r\n value: function () { }\r\n }, {\r\n key: \"start\",\r\n value: function (e) {\r\n window.currentScrollTop = 0;\r\n var t = {\r\n container: document.querySelector(\"#wrap\"),\r\n alwaysShowTracks: !0,\r\n syncCallbacks: !0\r\n }\r\n , n = (0,\r\n c11.merge)(t, e);\r\n i.instance = new i(n),\r\n i.init(n)\r\n }\r\n }, {\r\n key: \"bind\",\r\n value: function (e, t) {\r\n i.instance.views.push({\r\n id: e,\r\n fn: t\r\n })\r\n }\r\n }, {\r\n key: \"unbind\",\r\n value: function (e) {\r\n for (var t = i.instance, n = 0; n < t.views.length; n++)\r\n if (t.views[n].id === e) {\r\n t.views.splice(n, 1);\r\n break\r\n }\r\n }\r\n }]),\r\n i\r\n}();\r\n// var t = { default: i }\r\n\r\nexport default i\r\n","/* eslint-disable */\r\nfunction a11() {\r\n return (0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : []).filter(function (e) {\r\n return null != e\r\n })\r\n}\r\n\r\nexport default a11\r\n","/* eslint-disable */\r\nvar o11 = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (e) {\r\n return typeof e\r\n}\r\n : function (e) {\r\n return e && \"function\" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? \"symbol\" : typeof e\r\n }\r\n ;\r\n\r\nexport default o11\r\n","/* eslint-disable */\r\nimport a11 from './a11.js'\r\nimport o11 from './o11.js'\r\n\r\nvar c11 = {\r\n merge: function i() {\r\n for (var e = arguments.length, t = Array(e), n = 0; n < e; n++)\r\n t[n] = arguments[n];\r\n var r = a11(t);\r\n if (r.length < 1)\r\n return {};\r\n if (1 === r.length)\r\n return t[0];\r\n return r.reduce(function (t, n) {\r\n return Object.keys(n).forEach(function (e) {\r\n \"object\" === o11(t[e]) && \"object\" === o11(n[e]) && void 0 === n[e].length ? t[e] = i(t[e], n[e]) : t[e] = n[e]\r\n }),\r\n t\r\n }, {})\r\n }\r\n}\r\n\r\nexport default c11\r\n","\r\nexport const qs = (selector, ctx = document) => ctx.querySelector(selector)\r\n\r\nexport const qsa = (selector, ctx = document) => Array.from(ctx.querySelectorAll(selector))\r\n\r\nconst domHasClass = (t, e) => {\r\n return t.classList ? t.classList.contains(e) : new RegExp('(^| )' + e + '( |$)', 'gi').test(t.className)\r\n}\r\n\r\nexport const domAddClass = (t, e) => {\r\n if (t.classList) {\r\n t.classList.add(e)\r\n } else {\r\n if (!domHasClass(t, e)) {\r\n t.className += ' ' + e\r\n }\r\n }\r\n}\r\n\r\nexport const domRemoveClass = (t, e) => {\r\n if (t.classList) {\r\n t.classList.remove(e)\r\n } else {\r\n t.className = t.className.replace(new RegExp('(^|\\\\b)' + e.split(' ').join('|') + '(\\\\b|$)', 'gi'), '')\r\n var i = t.className.length - 1\r\n if (t.className[i] === ' ') {\r\n t.className = t.className.substring(0, i)\r\n }\r\n }\r\n}\r\n","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Knowbtn1.vue?vue&type=style&index=0&id=77cf82f3&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Knowbtn1.vue?vue&type=style&index=0&id=77cf82f3&lang=scss&scoped=true&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"btn-know ft-16\",class:{ dark: _vm.dark },on:{\"click\":_vm.btnClick}},[_vm._v(_vm._s(_vm.$t('btn1')))])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n\r\n {{$t('btn1')}}
\r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Knowbtn1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Knowbtn1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Knowbtn1.vue?vue&type=template&id=77cf82f3&scoped=true&\"\nimport script from \"./Knowbtn1.vue?vue&type=script&lang=js&\"\nexport * from \"./Knowbtn1.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Knowbtn1.vue?vue&type=style&index=0&id=77cf82f3&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"77cf82f3\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Counter.vue?vue&type=style&index=0&id=73679aa4&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Counter.vue?vue&type=style&index=0&id=73679aa4&lang=scss&scoped=true&\"","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Title.vue?vue&type=style&index=0&id=4facbca8&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Title.vue?vue&type=style&index=0&id=4facbca8&lang=scss&scoped=true&\"","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sea.vue?vue&type=style&index=0&id=249738a7&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Sea.vue?vue&type=style&index=0&id=249738a7&lang=scss&scoped=true&\"","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./What.vue?vue&type=style&index=0&id=147e5a61&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../node_modules/css-loader/index.js??ref--8-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../node_modules/sass-loader/lib/loader.js??ref--8-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./What.vue?vue&type=style&index=0&id=147e5a61&lang=scss&scoped=true&\""],"sourceRoot":""}