재사용 가능한 UI 요소를 말한다. 애플리케이션을 여러 개의 작은 조각으로 분리하여 관리 가능한 단위로 만든다. 컴포넌트를 사용하면 UI 코드를 보다 간결하게 유지할 수 있으며, 재사용성과 유지 관리성이 뛰어나다.
<template>
<table>
<tr is="my-row"></tr>
</table>
</template>
<script>
export default {
name : 'my-table',
}
</script>
<style>
border : none;
</style>
import my-table from './경로'
export default {
data() {
},
components : {
my-table,
}
}
<mytable/>