Sign in

zhusen / kelude-outside-web · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • kelude-outside-web
  • src
  • components
  • ContentDescription.vue
  • up
    e11821c1
    sanmu authored
    2023-07-02 16:51:02 +0800  
    Browse File ยป
ContentDescription.vue 271 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<template>
  <div :class="'text-subtitle-1  tw-text-justify font-weight-medium ' + className">
    {{ content }}
  </div>
</template>

<script setup lang="ts">
defineProps({
  content: String,
  className: {
    default: 'tw-mb-[64px]',
    type: String
  }
})
</script>