I have a file with function like a func.js like below
1 | export const func = { |
In main.js
1 | import {func} from './func.js' |
and you can use from all components if in script tag like below
1 | this.$func.functionName(somedata) |
or if template tag like
1 | $func.functionName(somedata) |
dom ready
1 | document.addEventListener('readystatechange', function() { |