Add instance information page for mobile
This commit is contained in:
parent
2184334ad9
commit
a60fc390a0
7 changed files with 60 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
const TermsOfServicePanel = {
|
||||
computed: {
|
||||
content () {
|
||||
return this.$store.state.instance.tos
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default TermsOfServicePanel
|
|
@ -0,0 +1,18 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div v-html="content" class="tos-content">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script src="./terms_of_service_panel.js" ></script>
|
||||
|
||||
<style lang="scss">
|
||||
.tos-content {
|
||||
margin: 1em
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue