blob: 53bf218e909a5658309aafa9b37a3cae3e6f3013 [file] [log] [blame]
<template>
<text>{{ title }}</text>
</template>
<script>
module.exports = {
props: ['title'],
data: function () {
return {title: 'x'}
}
}
</script>