UNPKG

vue-cli-plugin-easy-clm

Version:

Plugin based on vue-cli, help to develope in MI Touch, Pharma Touch and Veeva CRM

25 lines (21 loc) 563 B
import com from 'veevalibrary' import {getFullId} from '@/app/utils/sl-id-parser' import desktopNavigationBeyondRootDir from '@/app/utils/desktop-navigation-beyond-root-dir' export default { created() { // Disable system vertical fucking swipe document.addEventListener('touchmove', function (e) { e.preventDefault(); }, true); }, methods: { navigateTo(id) { id = getFullId(id); try { com.veeva.clm.gotoSlide(id + '.zip', ''); } catch(err) { desktopNavigationBeyondRootDir(id); } } } }