discord-client/webpack/vue/channel.vue

23 lines
379 B
Vue
Raw Normal View History

2018-03-21 17:44:27 +00:00
<template>
<div class='container'>
2018-03-21 17:44:27 +00:00
<div class='header'>
<div class='title'>{{ gs.channel.get().room && gs.channel.get().room.text && gs.channel.get().room.text.list[gs.channel.get().room.text.active] || '?' }}</div>
</div>
2018-03-21 17:44:27 +00:00
<div class='body'>
</div>
2018-03-21 17:44:27 +00:00
</div>
</template><script>
export default {
name: 'channel-',
data(){ return { gs: gs.get }; }
}
</script>