当前位置:   article > 正文

在原生html、js、jsp中使用vue+element封装组件_jsp 如何使用elemenui

jsp 如何使用elemenui

1、新建一个js文件,创建子组件,例:my-component.js

  1. Vue.component('my-component', {
  2. template: `
  3. <div>测试</div>
  4. `,
  5. props: {
  6. isShow: {
  7. type: Boolean,
  8. default: false
  9. }
  10. },
  11. data() {
  12. return {
  13. }
  14. },
  15. watch: {
  16. },
  17. month() {
  18. }
  19. },
  20. mounted() {
  21. },
  22. methods: {
  23. }
  24. })

2、新建html文件,创建父组件

  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. <!-- 引入VUE文件 -->
  7. <script src="./js/vue.js"></script>
  8. <!-- 引入子组件js文件 -->
  9. <script src="./js/my-component.js"></script>
  10. <!-- 引入Element UI的CSS文件 -->
  11. <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
  12. <!-- 引入Element UI的JS文件 -->
  13. <script src="https://unpkg.com/element-ui/lib/index.js"></script>
  14. <title>Document</title>
  15. </head>
  16. <body>
  17. <div id="app">
  18. <my-component :is-show="showDate"></my-component>
  19. </div>
  20. </body>
  21. <script>
  22. var app = new Vue({
  23. el: '#app',
  24. data() {
  25. return {
  26. showDate:ture
  27. }
  28. }
  29. });
  30. </script>
  31. </html>

注意:命名必须保持一致,必须为驼峰或-,组件传值和其它写法都与vue语法一致。

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

闽ICP备14008679号