0👍
You should use === comparison operator in your v-if or just v-if=" !ammdisabled ". Also you cannot change a component property inside the component. They are readonly. Use v-model instead.
<template v-if="!ammdisabled">
- [Vuejs]-Inertia global headers
- [Vuejs]-Auth0 getAccessTokenSilently returns empty object when trying to set vue apollo client bearer token
Source:stackexchange.com