Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion template/tinyvue/src/components/breadcrumb/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</template>

<script lang="ts" setup>
import { PropType, defineProps } from 'vue';
import { PropType } from 'vue';
import {
Breadcrumb as TinyBreadcrumb,
BreadcrumbItem as TinyBreadcrumbItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</template>

<script lang="ts" setup>
import { reactive, toRefs, defineExpose } from 'vue';
import { reactive, toRefs } from 'vue';
import {
Layout as TinyLayout,
Form as TinyForm,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</template>

<script lang="ts" setup>
import { ref, reactive, onMounted, watch, defineExpose } from 'vue';
import { ref, reactive, onMounted, watch } from 'vue';
import { useI18n } from 'vue-i18n';
import { Modal, Loading } from '@opentiny/vue';
import { useAppStore } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</template>

<script lang="ts" setup>
import { ref, reactive, computed, defineExpose, toRefs } from 'vue';
import { ref, reactive, computed, toRefs } from 'vue';
import {
Layout as TinyLayout,
Form as TinyForm,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</template>

<script lang="ts" setup>
import { ref, reactive, defineExpose } from 'vue';
import { ref, reactive } from 'vue';
import { Transfer as TinyTransfer } from '@opentiny/vue';

interface data {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img :src="url" class="img" alt="" />
</template>
<script lang="ts" setup>
import { computed, defineProps } from 'vue';
import { computed } from 'vue';

const props = defineProps({
src: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
</template>

<script lang="ts" setup>
import { defineProps } from 'vue';
import tip1 from '@/assets/images/tip1.png';
import tip2 from '@/assets/images/tip2.png';
import tip3 from '@/assets/images/tip3.png';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</template>

<script lang="ts" setup>
import { defineProps, ref } from 'vue';
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
import { Button as TinyButton, Modal } from '@opentiny/vue';
import { useUserStore } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</template>

<script lang="ts" setup>
import { watch, ref, defineExpose } from 'vue';
import { watch, ref } from 'vue';
import { DatePicker as TinyDatePicker, Modal } from '@opentiny/vue';
import { useI18n } from 'vue-i18n';
import { useUserStore } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</template>

<script lang="ts" setup>
import { watch, ref, defineExpose } from 'vue';
import { watch, ref } from 'vue';
import { DatePicker as TinyDatePicker } from '@opentiny/vue';
import { useUserStore } from '@/store';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</template>

<script lang="ts" setup>
import { watch, ref, defineExpose } from 'vue';
import { watch, ref } from 'vue';
import { CheckboxGroup as TinyCheckboxGroup } from '@opentiny/vue';
import { useI18n } from 'vue-i18n';
import { useUserStore } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</template>

<script lang="ts" setup>
import { watch, ref, defineExpose } from 'vue';
import { watch, ref } from 'vue';
import { CheckboxGroup as TinyCheckboxGroup } from '@opentiny/vue';
import { useI18n } from 'vue-i18n';
import { useUserStore } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</template>

<script lang="ts" setup>
import { watch, ref, defineExpose } from 'vue';
import { watch, ref } from 'vue';
import { CheckboxGroup as TinyCheckboxGroup } from '@opentiny/vue';
import { useI18n } from 'vue-i18n';
import { useUserStore } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
</template>

<script lang="ts" setup>
import { defineProps } from 'vue';
import {
GridColumn as TinyGridColumn,
Grid as TinyGrid,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</template>

<script lang="ts" setup>
import { ref, reactive, defineProps, computed, defineExpose } from 'vue';
import { ref, reactive, computed } from 'vue';
import { useI18n } from 'vue-i18n';
import {
Select as TinySelect,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</template>

<script lang="ts" setup>
import { reactive, defineProps } from 'vue';
import { reactive } from 'vue';
import { useI18n } from 'vue-i18n';
import { getUserInfo } from '@/api/user';

Expand Down
2 changes: 1 addition & 1 deletion template/tinyvue/src/views/userManager/useradd/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
</template>

<script lang="ts" setup>
import { computed, onMounted, reactive, ref, defineProps } from 'vue';
import { computed, onMounted, reactive, ref } from 'vue';
import { useI18n } from 'vue-i18n';
import {
Select as TinySelect,
Expand Down
Loading