26 lines
558 B
Vue
26 lines
558 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<p class='text-center m-3 h3'> Лабораторная работа 4</p>
|
||
|
</div>
|
||
|
<div>
|
||
|
<p class='h4 text-center'>
|
||
|
<router-link to="/profiles" class="text-decoration-none m-3">Профили</router-link>
|
||
|
<router-link to="/comments" class="text-decoration-none m-3">Лента</router-link>
|
||
|
</p>
|
||
|
</div>
|
||
|
<router-view></router-view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="">
|
||
|
|
||
|
</style>
|