sample.vue 336 B

1234567891011121314151617181920212223
  1. <template>
  2. <div style="justify-content:center">
  3. <text class="freestyle">{{string}}</text>
  4. </div>
  5. </template>
  6. <style scoped>
  7. .freestyle {
  8. color: #41B883;
  9. font-size: 233px;
  10. text-align: center;
  11. }
  12. </style>
  13. <script>
  14. module.exports = {
  15. data () {
  16. return {
  17. string: 'Yo'
  18. }
  19. }
  20. }
  21. </script>