index.html 610 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="../vue.js"></script>
  7. </head>
  8. <body>
  9. <div id="app">
  10. <child content="hello world"></child>
  11. </div>
  12. <script>
  13. Vue.component('child',{
  14. props: {
  15. content: {
  16. type: [String,Number],
  17. required: false,
  18. default: "default value",
  19. validator: function(value){
  20. return (value.length > 5)
  21. }
  22. }
  23. },
  24. template: '<div>{{content}}</div>'
  25. })
  26. var vm = new Vue({
  27. el: "#app"
  28. })
  29. </script>
  30. </body>
  31. </html>