• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<template>
2    <div><text class="hi">{{hi}}</text></div>
3</template>
4
5<style>
6.hi {
7    font-size: 26px;
8    color: green;
9}
10</style>
11
12<script>
13export default {
14    data() {
15        return {
16            hi: ''
17        }
18    }
19}
20</script>