pre.vue 327 B

1234567891011121314151617181920
  1. <style lang="stylus">
  2. font-stack = Helvetica, sans-serif
  3. primary-color = #999
  4. body
  5. font 100% font-stack
  6. color primary-color
  7. </style>
  8. <template lang="pug">
  9. div
  10. h1 This is the app
  11. comp-a
  12. comp-b
  13. </template>
  14. <script lang="coffee">
  15. module.exports =
  16. data: ->
  17. msg: 'Hello from coffee!'
  18. </script>