Vue Pivottablevue-pivottable 공식 가이드
Vue 3용 유연하고 사용하기 쉬운 피벗 테이블 컴포넌트
<template>
<VuePivottableUi
:data="[
{ color: 'blue', shape: 'circle' },
{ color: 'red', shape: 'triangle' }
]"
:rows="['color']"
:cols="['shape']"
/>
</template>
<script setup>
import { VuePivottableUi } from 'vue-pivottable'
import 'vue-pivottable/dist/vue-pivottable.css'
</script>