I want to use this javascript function to call on every template / layout / page in Nuxt.js (vuejs)
function setBoolean(val) {
if (val) {
return 1
}
return 0
}
on template I want to call it like
methods: {
getValue() {
this.value = setBoolean(false)
}
}
middlewareon the default layout of Nuxt.