This commit is contained in:
@@ -12,20 +12,34 @@
|
|||||||
Wiki
|
Wiki
|
||||||
</span>
|
</span>
|
||||||
<div class="mt-2">
|
<div class="mt-2">
|
||||||
<v-btn-toggle v-model="currentView">
|
<v-btn
|
||||||
<v-btn color="white" :value="view.HIDDEN_VIEW">
|
text
|
||||||
<v-icon>fa-eye-slash</v-icon>
|
:outlined="currentView == view.HIDDEN_VIEW"
|
||||||
</v-btn>
|
@click="currentView = view.HIDDEN_VIEW"
|
||||||
<v-btn color="white" :value="view.WIKI_VIEW">
|
>
|
||||||
<v-icon>fa-eye</v-icon>
|
<v-icon>fa-eye-slash</v-icon>
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn color="white" :value="view.DESIGN_VIEW">
|
<v-btn
|
||||||
<v-icon>fa-edit</v-icon>
|
text
|
||||||
</v-btn>
|
:outlined="currentView == view.WIKI_VIEW"
|
||||||
<v-btn color="white" :value="view.SPLIT_VIEW">
|
@click="currentView = view.WIKI_VIEW"
|
||||||
<v-icon>fa-columns</v-icon>
|
>
|
||||||
</v-btn>
|
<v-icon>fa-eye</v-icon>
|
||||||
</v-btn-toggle>
|
</v-btn>
|
||||||
|
<v-btn
|
||||||
|
text
|
||||||
|
:outlined="currentView == view.DESIGN_VIEW"
|
||||||
|
@click="currentView = view.DESIGN_VIEW"
|
||||||
|
>
|
||||||
|
<v-icon>fa-edit</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
<v-btn
|
||||||
|
text
|
||||||
|
:outlined="currentView == view.SPLIT_VIEW"
|
||||||
|
@click="currentView = view.SPLIT_VIEW"
|
||||||
|
>
|
||||||
|
<v-icon>fa-columns</v-icon>
|
||||||
|
</v-btn>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<v-sheet
|
<v-sheet
|
||||||
|
|||||||
Reference in New Issue
Block a user