discord-client/webpack/vue/channel.vue

22 lines
316 B
Vue
Raw Normal View History

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