summaryrefslogtreecommitdiff
path: root/src/client/app
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-25 06:34:50 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-25 06:34:50 +0900
commit1ba5dfd79c66edd871f922d21861557e6152cc6c (patch)
treeba6ae8e232af306f8f17d8b8f1255aa81714041c /src/client/app
parentwip (diff)
downloadsharkey-1ba5dfd79c66edd871f922d21861557e6152cc6c.tar.gz
sharkey-1ba5dfd79c66edd871f922d21861557e6152cc6c.tar.bz2
sharkey-1ba5dfd79c66edd871f922d21861557e6152cc6c.zip
wip
Diffstat (limited to 'src/client/app')
-rw-r--r--src/client/app/desktop/views/components/lists-window.vue37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/client/app/desktop/views/components/lists-window.vue b/src/client/app/desktop/views/components/lists-window.vue
new file mode 100644
index 0000000000..7d6a5def2c
--- /dev/null
+++ b/src/client/app/desktop/views/components/lists-window.vue
@@ -0,0 +1,37 @@
+<template>
+<mk-window ref="window" is-modal width="500px" height="550px" @closed="$destroy">
+ <span slot="header" :class="$style.header">%fa:list% リスト</span>
+
+ <button class="ui">リストを作成</button>
+ <a v-for="list in lists" :key="list.id">
+
+ </a>
+</mk-window>
+</template>
+
+<script lang="ts">
+import Vue from 'vue';
+export default Vue.extend({
+ data() {
+ return {
+ fetching: true,
+ lists: []
+ };
+ },
+ mounted() {
+ (this as any).api('users/lists/list').then(lists => {
+ this.fetching = false;
+ this.lists = lists;
+ });
+ },
+ methods: {
+ close() {
+ (this as any).$refs.window.close();
+ }
+ }
+});
+</script>
+
+<style lang="stylus" scoped>
+
+</style>