Remove defineModel, defineProps imports
This silences a Vue compiler warning
This commit is contained in:
parent
ad3276bbd5
commit
bbcb3cee6f
@ -55,8 +55,6 @@
|
|||||||
|
|
||||||
import { getCurrentWindow } from '@tauri-apps/api/window';
|
import { getCurrentWindow } from '@tauri-apps/api/window';
|
||||||
|
|
||||||
import { defineProps } from 'vue';
|
|
||||||
|
|
||||||
import { DT_FORMAT, db, deserialiseAmount } from '../db.ts';
|
import { DT_FORMAT, db, deserialiseAmount } from '../db.ts';
|
||||||
import ComboBoxAccounts from './ComboBoxAccounts.vue';
|
import ComboBoxAccounts from './ComboBoxAccounts.vue';
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!--
|
<!--
|
||||||
DrCr: Web-based double-entry bookkeeping framework
|
DrCr: Web-based double-entry bookkeeping framework
|
||||||
Copyright (C) 2022–2024 Lee Yingtong Li (RunasSudo)
|
Copyright (C) 2022-2025 Lee Yingtong Li (RunasSudo)
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU Affero General Public License as published by
|
it under the terms of the GNU Affero General Public License as published by
|
||||||
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ChevronUpDownIcon } from '@heroicons/vue/24/outline';
|
import { ChevronUpDownIcon } from '@heroicons/vue/24/outline';
|
||||||
import { defineModel, defineProps, useTemplateRef } from 'vue';
|
import { useTemplateRef } from 'vue';
|
||||||
|
|
||||||
const { values, inputClass } = defineProps<{ values: string[], inputClass?: string }>();
|
const { values, inputClass } = defineProps<{ values: string[], inputClass?: string }>();
|
||||||
const inputField = useTemplateRef('inputField');
|
const inputField = useTemplateRef('inputField');
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineProps, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
|
||||||
import { db } from '../db.ts';
|
import { db } from '../db.ts';
|
||||||
import ComboBox from './ComboBox.vue';
|
import ComboBox from './ComboBox.vue';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!--
|
<!--
|
||||||
DrCr: Web-based double-entry bookkeeping framework
|
DrCr: Web-based double-entry bookkeeping framework
|
||||||
Copyright (C) 2022–2025 Lee Yingtong Li (RunasSudo)
|
Copyright (C) 2022-2025 Lee Yingtong Li (RunasSudo)
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU Affero General Public License as published by
|
it under the terms of the GNU Affero General Public License as published by
|
||||||
@ -43,7 +43,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { CheckIcon, ChevronUpDownIcon } from '@heroicons/vue/24/outline';
|
import { CheckIcon, ChevronUpDownIcon } from '@heroicons/vue/24/outline';
|
||||||
|
|
||||||
import { defineModel, defineProps, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
|
||||||
const { values } = defineProps<{ values: [string | null, [string, string][]][] }>(); // Array of [category name, [internal identifier, pretty name]]
|
const { values } = defineProps<{ values: [string | null, [string, string][]][] }>(); // Array of [category name, [internal identifier, pretty name]]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user