App.vue 340 B

1234567891011121314151617181920212223
  1. <template>
  2. <div id="app">
  3. <message>Hello there</message>
  4. <message>and there</message>
  5. </div>
  6. </template>
  7. <script>
  8. import Message from './components/Message.vue';
  9. export default {
  10. name: 'app',
  11. components: {
  12. Message,
  13. },
  14. data () {
  15. return {
  16. }
  17. }
  18. }
  19. </script>
  20. <style lang="scss">
  21. </style>