21 lines
292 B
Vue
21 lines
292 B
Vue
<template>
|
|
<div>
|
|
<h1>{{ title }}</h1>
|
|
<h2>{{ subtitle }}</h2>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
subtitle: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
}
|
|
</script> |