11 lines
273 B
Vue
11 lines
273 B
Vue
<template>
|
|
<BaseLayout>
|
|
<h2>Список таблиц</h2>
|
|
<UserTablesList />
|
|
</BaseLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import BaseLayout from '../../components/BaseLayout.vue';
|
|
import UserTablesList from '../../components/tables/UserTablesList.vue';
|
|
</script> |