diff options
| author | Hakaba Hitoyo <hakabahitoyo@example.com> | 2018-09-03 14:43:10 +0900 |
|---|---|---|
| committer | Hakaba Hitoyo <hakabahitoyo@example.com> | 2018-09-03 14:43:10 +0900 |
| commit | 52fe01e4d8c6b9c783f8606ac1ece6a66371508a (patch) | |
| tree | 08f05e0b16dee378141f13ce4dec7e699daccf8a /src/components/features_panel/features_panel.vue | |
| parent | 20b0ffc0b9978799ed34fc3b8c85aa8fe56f2eeb (diff) | |
mock features panel
Diffstat (limited to 'src/components/features_panel/features_panel.vue')
| -rw-r--r-- | src/components/features_panel/features_panel.vue | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/features_panel/features_panel.vue b/src/components/features_panel/features_panel.vue new file mode 100644 index 00000000..bcb700ed --- /dev/null +++ b/src/components/features_panel/features_panel.vue @@ -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> |
