当前位置:   article > 正文

vue使用自定义组件规则

vue使用自定义组件规则

使用自定义组件规则

    1.定义组件中不要绑定el

    2.data必须使用函数写法

    3.注册时可以取别名,别名不可以驼峰命名,需要使用-连接,不能使用已有的标签作为名称

    4.模板时只能有一个父级,只在vue2

    5.未搭建脚手架使用单标签会使后面代码都不渲染

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <div id="app">
  10. <school></school>
  11. <!-- <School></School>
  12. <abc></abc>
  13. <student-puls></student-puls> -->
  14. <hr/>
  15. <!-- <student-puls/>
  16. <abc/> -->
  17. <!-- <aaa></aaa> -->
  18. <!-- <h1>11111111111</h1> -->
  19. <!-- <studentPuls></studentPuls>不可以在不搭建脚手架使用 -->
  20. </div>
  21. </body>
  22. <script src="../vue.js"></script>
  23. <script>
  24. // 使用自定义组件规则
  25. // 1.定义组件中不要绑定el
  26. // 2.data必须使用函数写法
  27. // 3.注册时可以取别名,别名不可以驼峰命名,需要使用-连接,不能使用已有的标签作为名称
  28. // 4.模板时只能有一个父级,只在vue2
  29. // 5.未搭建脚手架使用单标签会使后面代码都不渲染
  30. Vue.config.productionTip = false;
  31. const student = Vue.extend({
  32. template:`
  33. <div>
  34. <h1>我是student组件</h1>
  35. <ccc></ccc>
  36. </div>
  37. `,
  38. })
  39. const nameList = {
  40. template:`
  41. <div>
  42. <h1>我是nameList组件</h1>
  43. </div>
  44. `,
  45. }
  46. Vue.component("ccc",nameList);
  47. const school = Vue.extend({
  48. template:`
  49. <div>
  50. <h1>我是school组件</h1>
  51. <bbb></bbb>
  52. </div>
  53. `,
  54. components:{
  55. bbb:student
  56. }
  57. })
  58. var vm = new Vue({
  59. el:"#app",
  60. methods: {
  61. },
  62. components:{
  63. School:school,
  64. abc:student,
  65. "student-puls":student,
  66. "studentPuls":student,
  67. aaa:nameList,
  68. }
  69. })
  70. </script>
  71. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/368652
推荐阅读
相关标签
  

闽ICP备14008679号