๋ฐ์ํ
year๋ ๋ด๋ฆผ์ฐจ์, name์ ์ค๋ฆ์ฐจ์ ์ ๋ ฌ ํ๊ณ ์ถ๋ค
<v-data-table
:sort-by="['year', 'name']"
:sort-desc="[true, false]"
>
group-by ์ ๋ฐ๋ผ์ desc ์ค์
<html>
<v-data-table
:group-by="groupBy"
:group-desc="groupDesc"
>
<script>
watch: {
groupBy: function (newText) {
if(newText === 'name'){
this.groupDesc = false
} else{
this.groupDesc = true
}
}
}
๋ค๋ฅธ tab์์ MathJax ์๋จนํ -> :eager="true"๋ก ์ค์ ํด์ผํจ
<v-tab-item :eager="true">
First Tab
<v-tab-item>
vuetifyjs.com/en/api/v-tab-item/
๋ฐ์ํ
'Web > Vue' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Vue] router multiple paths, redirect to default path (1) | 2021.04.14 |
---|---|
[Vue.js] CLI ์ค์นํ๊ธฐ (0) | 2020.12.14 |
Vuetify, refs (0) | 2020.11.27 |
[Vue] Vuetify Quick Start (0) | 2020.07.14 |
[Vue] Delimiters ๋ณ๊ฒฝ (0) | 2020.07.13 |