layui/src/module/breadcrumbItem/index.vue

16 lines
241 B
Vue
Raw Normal View History

<template>
<a href="">{{title}}</a>
<span lay-separator="">/</span>
</template>
<script setup name="LayBreadcrumbItem" lang="ts">
import { defineProps } from 'vue'
const props =
defineProps<{
title: string
}>()
</script>