mock features panel
This commit is contained in:
parent
20b0ffc0b9
commit
52fe01e4d8
10675
package-lock.json
generated
Normal file
10675
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -2,8 +2,9 @@ import UserPanel from './components/user_panel/user_panel.vue'
|
||||
import NavPanel from './components/nav_panel/nav_panel.vue'
|
||||
import Notifications from './components/notifications/notifications.vue'
|
||||
import UserFinder from './components/user_finder/user_finder.vue'
|
||||
import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue'
|
||||
import FeaturesPanel from './components/features_panel/features_panel.vue'
|
||||
import InstanceSpecificPanel from './components/instance_specific_panel/instance_specific_panel.vue'
|
||||
import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue'
|
||||
import ChatPanel from './components/chat_panel/chat_panel.vue'
|
||||
|
||||
export default {
|
||||
|
@ -27,6 +27,7 @@
|
||||
<div class="sidebar">
|
||||
<user-panel></user-panel>
|
||||
<nav-panel></nav-panel>
|
||||
<features-panel></features-panel>
|
||||
<instance-specific-panel v-if="showInstanceSpecificPanel"></instance-specific-panel>
|
||||
<who-to-follow-panel v-if="currentUser && suggestionsEnabled"></who-to-follow-panel>
|
||||
<notifications v-if="currentUser"></notifications>
|
||||
|
6
src/components/features_panel/features_panel.js
Normal file
6
src/components/features_panel/features_panel.js
Normal file
@ -0,0 +1,6 @@
|
||||
const FeaturesPanel = {
|
||||
computed: {
|
||||
}
|
||||
}
|
||||
|
||||
export default FeaturesPanel
|
26
src/components/features_panel/features_panel.vue
Normal file
26
src/components/features_panel/features_panel.vue
Normal file
@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<div class="features-panel">
|
||||
<div class="panel panel-default base01-background">
|
||||
<div class="panel-heading timeline-heading base02-background base04">
|
||||
<div class="title">
|
||||
Features
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-body features">
|
||||
<ul>
|
||||
<li>Media proxy</li>
|
||||
<li>Local chat</li>
|
||||
<li>Who to follow</li>
|
||||
<li>Scope options</li>
|
||||
<li>Formatting options</li>
|
||||
<li>Text limit=</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script src="./features_panel.js" ></script>
|
||||
|
||||
<style lang="scss">
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user