18 lines
237 B
Vue
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> |