WelcomeMessage.vue 226 B

12345678910111213141516
  1. <template>
  2. <div>
  3. <h3>Hello {{ name }} from my Vue.js page, built with Webpack 4!</h3>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. name: {
  10. type: String,
  11. required: true
  12. }
  13. }
  14. }
  15. </script>