This commit is contained in:
2022-05-03 22:34:52 +03:00
parent 1663f94b0e
commit 8958be3141
54 changed files with 1569 additions and 1014 deletions

View File

@@ -0,0 +1,16 @@
{% raw %}
<div class="row" v-for="(user, userIdx) in users">
<div class="col py-2">
<a :href="'/user/' + user.id">{{ user.name }}</a>
<div class="row">
<div class="col text-muted">
<small>
Создан: {{ user.created }}
</small>
</div>
</div>
</div>
</div>
{% endraw %}