Files
luos/workflow/engine/methods/authenticationSources/src/components/titleSection.vue
2020-12-11 15:22:55 -04:00

18 lines
237 B
Vue

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