14 lines
365 B
Vue
14 lines
365 B
Vue
|
<script setup lang="ts">
|
||
|
import { ArrowLeft } from '@vben/icons';
|
||
|
import { VbenIconButton } from '@vben-core/shadcn-ui';
|
||
|
import { useRouter } from 'vue-router';
|
||
|
const router = useRouter();
|
||
|
const back = () => {
|
||
|
router.push('/navigation');
|
||
|
}
|
||
|
</script>
|
||
|
<template>
|
||
|
<VbenIconButton @click="back">
|
||
|
<ArrowLeft></ArrowLeft>
|
||
|
</VbenIconButton>
|
||
|
</template>
|