\n \n \n {{ $t('tutorial') }}\n \n \n \n \n \n \n
\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TutorialVideoModal.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TutorialVideoModal.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./TutorialVideoModal.vue?vue&type=template&id=835f219a\"\nimport script from \"./TutorialVideoModal.vue?vue&type=script&lang=js\"\nexport * from \"./TutorialVideoModal.vue?vue&type=script&lang=js\"\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 null,\n null\n \n)\n\nexport default component.exports","import { currentLanguage, formatDecimal, LANG } from '@/language'\nimport { unitMeasure, unitConversions, unit } from '@/language/unitMeasure'\n\nexport const convertToTargetUnit = (\n value,\n type,\n convertDecimalSeparator = true\n) => {\n /* \n If the converted number will be used in math operations or comparisons, the atribute convertDecimalSeparator MUST BE set to FALSE.\n Otherwise, the decimal separator will be set accordingly to the language, which could result in NAN\n */\n const _value = Number(value)\n const convertedValue =\n standardUnit(type) === targetUnit(type)\n ? _value\n : _value * unitConversions[standardUnit(type)][targetUnit(type)]\n\n if (type === 'temperature' && targetUnit(type) === unit.fahrenheit) {\n return Math.round(convertedValue + 32) /* Tf = (Tc * 9/5) + 32 */\n } else if (convertDecimalSeparator) {\n return formatDecimal(convertedValue, 2)\n .replace(/,00$/, '')\n .replace(/\\.00$/, '')\n } else {\n return Number(convertedValue.toFixed(2))\n }\n}\n\nexport const convertToStandardUnit = (value, type) => {\n const _value = Number(value)\n return standardUnit(type) === targetUnit(type)\n ? Number(_value.toFixed(6))\n : Number(\n (\n _value / unitConversions[standardUnit(type)][targetUnit(type)]\n ).toFixed(6)\n )\n}\n\nfunction targetUnit(type) {\n return unitMeasure[type][currentLanguage()]\n}\n\nfunction standardUnit(type) {\n return unitMeasure[type][LANG.PT]\n}\n","// Mixins\nimport { factory as GroupableFactory } from '../../mixins/groupable'\nimport Routable from '../../mixins/routable'\nimport Themeable from '../../mixins/themeable'\n\n// Utilities\nimport { getSlot, keyCodes } from './../../util/helpers'\nimport mixins from '../../util/mixins'\nimport { ExtractVue } from './../../util/mixins'\n\n// Types\nimport { VNode } from 'vue/types'\n\n// Components\nimport VTabsBar from '../VTabs/VTabsBar'\n\nconst baseMixins = mixins(\n Routable,\n // Must be after routable\n // to overwrite activeClass\n GroupableFactory('tabsBar'),\n Themeable\n)\n\ntype VTabBarInstance = InstanceType