layui/src/module/breadcrumbItem/index.vue

15 lines
286 B
Vue
Raw Normal View History

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