Files
luos/workflow/engine/methods/userExtendedAttributes/src/components/titleSection.vue

18 lines
237 B
Vue
Raw Normal View History

<template>
<div>
<h3 class="text-primary">
{{title}}
</h3>
</div>
</template>
<script>
export default{
props: {
title: String
}
}
</script>
<style scoped>
</style>