logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

terms_of_service_panel.vue (418B)


  1. <template>
  2. <div>
  3. <div class="panel panel-default">
  4. <div class="panel-body">
  5. <!-- eslint-disable vue/no-v-html -->
  6. <div
  7. class="tos-content"
  8. v-html="content"
  9. />
  10. <!-- eslint-enable vue/no-v-html -->
  11. </div>
  12. </div>
  13. </div>
  14. </template>
  15. <script src="./terms_of_service_panel.js"></script>
  16. <style lang="scss">
  17. .tos-content {
  18. margin: 1em;
  19. }
  20. </style>