\n\n\n\n\n\n","import {EventBus} from 'primevue/utils';\n\nexport default EventBus();","\n \n
\n The ESMO-GROW Online Tool & Informative Score application shall assist researchers only in the self-evaluation of their manuscripts according to ESMO-GROW recommendations.\n The tool does not provide any guarantee of compliance, quality or acceptance for publication.\n ESMO reserves the right to modify these recommendations.\n We will use the details you submit to provide you with customised PDF output and access to a saved version. It will not be used for any other purposes, including communications, marketing, or sharing with third parties. Saved content will be retained only for 2 years and then deleted.\n For further information on how we process your data please view the\n ESMO Privacy & Data Security Policy\n \n
Manage Cookies
\n
\n\n\n\n\n","import { render } from \"./AppFooter.vue?vue&type=template&id=586ed706&scoped=true\"\nimport script from \"./AppFooter.vue?vue&type=script&lang=js\"\nexport * from \"./AppFooter.vue?vue&type=script&lang=js\"\n\nimport \"./AppFooter.vue?vue&type=style&index=0&id=586ed706&scoped=true&lang=scss\"\n\nimport exportComponent from \"../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-586ed706\"]])\n\nexport default __exports__","import { render } from \"./App.vue?vue&type=template&id=00adb392\"\nimport script from \"./App.vue?vue&type=script&lang=js\"\nexport * from \"./App.vue?vue&type=script&lang=js\"\n\nimport \"./App.vue?vue&type=style&index=0&id=00adb392&lang=scss\"\n\nimport exportComponent from \"../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import {createRouter, createWebHistory } from 'vue-router';\nimport {getUser} from './main'\nimport App from \"@/App\";\n\nconst routes = [\n {\n path: '/',\n component: App,\n children: [\n {\n path: '/',\n name: 'Home',\n component: () => import('./components/Home')\n },\n {\n path: '/recommendations',\n name: 'recommendations',\n component: () => import('./components/Recommendations.vue')\n },\n {\n path: '/summary',\n name: 'summary',\n component: () => import('./components/Summary.vue')\n }\n ]\n }\n];\n\nconst router = createRouter({\n history: createWebHistory (),\n routes,\n scrollBehavior () {\n return { left: 0, top: 0 };\n }\n});\n\nrouter.beforeEach(function(to, from, next) {\n window.scrollTo(0, 0);\n if (to.matched.some(record => record.meta.requiresAuth)) {\n if (getUser() == null || getUser().token == null ) {\n next('/login')\n return\n }\n }\n next()\n});\n\nexport default router;","\n \n\n\n","import { render } from \"./AppWrapper.vue?vue&type=template&id=0e2dc6b5\"\nimport script from \"./AppWrapper.vue?vue&type=script&lang=js\"\nexport * from \"./AppWrapper.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import Prism from 'prismjs';\n\nconst CodeHighlight = {\n beforeMount(el, binding) {\n const modifiers = binding.modifiers;\n const value = binding.value;\n\n if (modifiers.script || value === 'script')\n el.className = 'language-javascript';\n else if (modifiers.css || value === 'css')\n el.className = 'language-css';\n else\n el.className = 'language-markup';\n\n Prism.highlightElement(el.children[0]);\n }\n};\n\nexport default CodeHighlight;\n","\n