0 votes
in VueJS by
recategorized by

How do you achieve conditional group of elements?

1 Answer

0 votes
by

You can achieve conditional group of elements(toggle multiple elements at a time) by applying v-if directive on <template> element which works as invisible wrapper(no rendering) for group of elements. For example, you can conditionally group user details based on valid user condition.

<template v-if="condition">
  <h1>Name</h1>
  <p>Address</p>
  <p>Contact Details</p>
</template>

Related questions

0 votes
asked Oct 21, 2019 in VueJS by Tate
0 votes
asked Oct 21, 2019 in VueJS by Tate
...