blob: 88dbef1ae3b55e8e7b4a33f314b3790f05c68a3b [file] [log] [blame]
<template>
<div><text class="hi">{{hi}}</text></div>
</template>
<style>
.hi {
font-size: 26px;
color: green;
}
</style>
<script>
export default {
data() {
return {
hi: ''
}
}
}
</script>