JThirdAppDropdown.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <a-dropdown v-if="syncToApp && syncToLocal">
  3. <a-button type="primary" preIcon="ant-design:sync-outlined">同步{{ name }}</a-button>
  4. <template #overlay>
  5. <a-menu @click="handleMenuClick">
  6. <a-menu-item v-if="syncToApp" key="to-app">同步到{{ name }}</a-menu-item>
  7. <a-menu-item v-if="syncToLocal" key="to-local">同步到本地</a-menu-item>
  8. </a-menu>
  9. </template>
  10. </a-dropdown>
  11. <a-button v-else-if="syncToApp" type="primary" preIcon="ant-design:sync-outlined" @click="handleMenuClick({ key: 'to-app' })"
  12. >同步{{ name }}</a-button
  13. >
  14. <a-button v-else type="primary" preIcon="ant-design:sync-outlined" @click="handleMenuClick({ key: 'to-local' })">同步{{ name }}到本地</a-button>
  15. </template>
  16. <script lang="ts" setup>
  17. /* JThirdAppButton 的子组件,不可单独使用 */
  18. const props = defineProps({
  19. type: String,
  20. name: String,
  21. syncToApp: Boolean,
  22. syncToLocal: Boolean,
  23. });
  24. // 声明Emits
  25. const emit = defineEmits(['to-app', 'to-local']);
  26. function handleMenuClick(event) {
  27. emit(event.key, { type: props.type });
  28. }
  29. </script>
  30. <style scoped></style>