mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
679 B
38 lines
679 B
<template>
|
|
<v-card>
|
|
<v-img
|
|
:src="imageSrc"
|
|
height="200px"
|
|
/>
|
|
<v-card-title primary-title class="layout justify-center">
|
|
<div class="headline text-xs-center font-weight-bold mb-2">
|
|
{{ title }}
|
|
</div>
|
|
</v-card-title>
|
|
<v-card-text class="subtitle-1 layout justify-center">
|
|
{{ text }}
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
text: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
imageSrc: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|