Sign in

canrd-main / canrud-nuxt-front · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • canrud-nuxt-front
  • components
  • ContentDescription.vue
  • feat: 海外官网服务端渲染重构
      aa1ded8a
    sanmu authored
    2024-05-27 23:13:07 +0800  
    Browse Code »
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>