import { ref } from 'vue';
import { Link } from '@inertiajs/vue3';
const links = ref([
{ name: 'Home', url: '/home' },
{ name: 'Dashboard', url: '/dashboard' },
{ name: 'Profile', url: '/profile' },
{ name: 'Settings', url: '/settings' },
{ name: 'Reports', url: '/reports' },
{ name: 'Invoices', url: '/invoices' },
{ name: 'Products', url: '/products' },
]);
defineProps({
title: String,
});
Navigation
-
{{ link.name }}
Подробнее здесь: https://stackoverflow.com/questions/794 ... g-properly
Мобильная версия