blob: 62ac6f94cf33069b3ecac85ba61f8423286beb29 [file] [log] [blame]
<template>
<div>
<text class="hello">Hello {{name}}</text>
</div>
</template>
<style>
.hello {
font-size: 26px;
color: red;
}
</style>
<script>
module.exports = {
data: function() {
return {
name: 'Weex'
}
}
}
</script>