15 lines
429 B
Vue
15 lines
429 B
Vue
<script lang="ts">
|
|
export default {
|
|
title: '常用流程',
|
|
icon: 'Star',
|
|
description: '常用流程收藏',
|
|
};
|
|
</script>
|
|
<template>
|
|
<Shortcut :title="$t('home.quickNavigationFlowsTip')" :empty-description="$t('home.addFlowsRoutesTip')" type="flow"></Shortcut>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="SysFavoriteDashboard">
|
|
const Shortcut = defineAsyncComponent(() => import('/@/views/home/shortcut/index.vue'));
|
|
</script>
|