apply linter
This commit is contained in:
parent
84e201ba41
commit
40c1c12fcc
8 changed files with 6 additions and 15 deletions
|
|
@ -86,7 +86,7 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted, defineEmits } from 'vue'
|
||||
import { ref, onMounted } from 'vue'
|
||||
import {
|
||||
BFormGroup,
|
||||
BFormInput,
|
||||
|
|
|
|||
|
|
@ -14,8 +14,6 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { defineProps } from 'vue'
|
||||
|
||||
defineProps(['title'])
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { defineProps, defineEmits } from 'vue'
|
||||
import { BFormSelect, BPagination } from 'bootstrap-vue-next'
|
||||
|
||||
defineProps(['page', 'pages', 'limit'])
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, watch, defineProps } from 'vue'
|
||||
import { ref, watch } from 'vue'
|
||||
import { getStorage, saveStorage } from '../../lib/storage'
|
||||
import { compute } from '../../chart/capital'
|
||||
import { Line } from 'vue-chartjs'
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, toRefs, watch, defineProps, onMounted } from 'vue'
|
||||
import { ref, toRefs, watch, onMounted } from 'vue'
|
||||
import { getStorage, saveStorage } from '../../lib/storage'
|
||||
import { computeDoughnut, computeBar } from '../../chart/distribution'
|
||||
import { renderCategory } from '../../lib/renderers'
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { toRefs, defineProps, defineEmits } from 'vue'
|
||||
import { toRefs } from 'vue'
|
||||
import { BFormInput } from 'bootstrap-vue-next'
|
||||
|
||||
const emit = defineEmits([
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { defineProps } from 'vue'
|
||||
import { compute } from '../../chart/savingAccount'
|
||||
import { Bar } from 'vue-chartjs'
|
||||
import { chartStyle } from '../../lib/chartStyle'
|
||||
|
|
|
|||
|
|
@ -55,13 +55,8 @@
|
|||
{ size: 10, label: '10' },
|
||||
{ size: 12, label: '12' },
|
||||
]"
|
||||
:variant="
|
||||
i.size == config[key].size ? 'primary' : 'secondary'
|
||||
"
|
||||
@click="
|
||||
config[key].size = i.size
|
||||
updateConfig()
|
||||
"
|
||||
:variant="i.size == config[key].size ? 'primary' : 'secondary'"
|
||||
@click="config[key].size = i.size; updateConfig()"
|
||||
>{{ i.label }}</BButton
|
||||
>
|
||||
</BButtonGroup>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue