[Vuejs]-Vue JS force re render component

0👍

<template>
    <component v-if='toggle' />
</template>

You can force re render by toggling the component with v-if.

Leave a comment