19 lines
242 B
Vue
19 lines
242 B
Vue
<template>
|
|
<div class="sidebar-line-txt">
|
|
<span>{{ label }}</span>
|
|
<div class="red-line"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|