Looking to create an app with a function that is currently undefined. On the production server, there is a function called __doPostBack which I am calling from my Vue app like this:
getLabel(templateName) {
__doPostBack(templateName, "");
}
After building and deploying to the production server, I want this function to run from Vue. Is it possible to build a Vue app without worrying about the function being undefined?