This commit is contained in:
syuilo 2018-02-08 14:50:18 +09:00
parent f8c8559089
commit 43525c4839
57 changed files with 205 additions and 205 deletions

View file

@ -2,13 +2,13 @@
<h1>アプリを管理</h1><a href="/app/new">アプリ作成</a>
<div class="apps">
<p v-if="fetching">読み込み中</p>
<virtual v-if="!fetching">
<template v-if="!fetching">
<p v-if="apps.length == 0">アプリなし</p>
<ul v-if="apps.length > 0">
<li each={ app in apps }><a href={ '/app/' + app.id }>
<p class="name">{ app.name }</p></a></li>
</ul>
</virtual>
</template>
</div>
<style lang="stylus" scoped>
:scope