I'm trying to use a global variable in my vue template. I'm trying to use it without setting it in the data fields, because they're actually some global constants.
<template v-if="item.WheelDrive === WHEEL_DRIVE.ALLROAD">
this will give me the "Property or method is not defined on the instance but referenced during render" error.
Is it possible to direct vue not to try and bind WHEEL_DRIVE here?