[Vuejs]-Boolean conditions not honored from child component overlay to parent component vue3

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">

Leave a comment