Is there a way to expand and collapse all el-collapse-items from the ElementPlus Vue3 Library using just one button in this code snippet?
<template>
<div class="demo-collapse">
<el-collapse v-model="activeName" accordion>
<el-collapse-item title="Consistency" name="1">
<script lang="ts" setup>
import { ref } from 'vue'
const activeName = ref('1')
</script>