{{ userName }}

当前位置:   article > 正文

vue2组件引入_vue2引入组件

vue2引入组件
  1. <template>
  2. <div class="hello">
  3. <h2> {
  4. { userName }} </h2>
  5. <input type="button" value="修改用户名" @click="changeName">
  6. <left class="tt"></left>
  7. <right class='tt'/>
  8. <img :src="tt" alt="">
  9. </div>
  10. </template>
  11. <script>
  12. import left from '@/components/left.vue' /*需要引入组件 */
  13. import right from '@/components/right.vue'
  14. export default {
  15. name: 'HelloWorld',
  16. components: {
  17. left,/* 简写模式 注册组件*/
  18. 'right':right
  19. },
  20. data(){
  21. return {
  22. userName:"admin",
  23. tt:'@/assets/logo.png'
  24. }
  25. },
  26. methods:{
  27. changeName(){
  28. this.userName="数据变化"+Math.random()
  29. }
  30. }
  31. }
  32. </script>
  33. <!-- Add "scoped" attribute to limit CSS to this component only -->
  34. <style scope
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签