Add TWKN timeline.
This commit is contained in:
parent
7fcd36e2c1
commit
83e7add2c7
5 changed files with 30 additions and 7 deletions
|
@ -0,0 +1,11 @@
|
|||
import Timeline from '../timeline/timeline.vue'
|
||||
const PublicAndExternalTimeline = {
|
||||
components: {
|
||||
Timeline
|
||||
},
|
||||
computed: {
|
||||
timeline () { return this.$store.state.statuses.timelines.publicAndExternal }
|
||||
}
|
||||
}
|
||||
|
||||
export default PublicAndExternalTimeline
|
|
@ -0,0 +1,10 @@
|
|||
<template>
|
||||
<div class="timeline panel panel-default">
|
||||
<div class="panel-heading">THE WHOLE KNOWN NETWORK</div>
|
||||
<div class="panel-body">
|
||||
<Timeline v-bind:timeline="timeline" v-bind:timeline-name="'publicAndExternal'"/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script src="./public_and_external_timeline.js"></script>
|
Loading…
Add table
Add a link
Reference in a new issue