16 lines
241 B
Vue
16 lines
241 B
Vue
|
<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>
|