Is there a way to utilize JavaScript built-in functions within a Vue template?
{{ eval(item.value.substring(2)) }}
I attempted to use the JS function eval() in {{}}, but encountered several errors such as:
[Vue warn]: Property or method "eval" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://v2.vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.
[Vue warn]: Error in render: "TypeError: _vm.eval is not a function"
vue.esm.js?efeb:1906 TypeError: _vm.eval is not a function