美文网首页
vue.js中的基础知识

vue.js中的基础知识

作者: 小木鱼的笔记 | 来源:发表于2018-09-10 11:10 被阅读0次

动态类名绑定:

<span :class="[{top:(item.top === true)},{good:(item.good === true)},}]"></span>

动态组件

VUE给我们提供了一个元素叫component,使用is特性来实现动态的挂载不同的组件。

<div id="app">
  <component :is="myComponent"></component>
  <button @click="changeComponent('a')">第一句的组件</button>
  <button @click="changeComponent('b')">第二句的组件</button> 
</div>

Vue.component('a-component',{
  template: '<h1>春眠不觉晓,</h1>',              
},)
Vue.component('b-component',{
  template: '<h1>处处闻啼鸟。</h1>',
},)

new Vue({
  el: '#app',
  data() {
    return {
      curIndex: 'a',
      myComponent: 'a-component',
    };
  },
  methods: {
    changeComponent(value) {
      if (value === this.curIndex) return;
      this.curIndex = value;
      this.myComponent = this.curIndex + '-component';
    },
  },            
})

相关文章

  • VUE基础知识入门

    VUE基础知识入门 VUE官方文档教程链接:VUE 1.什么是Vue.js Vue.js(读音 /vjuː/, 类...

  • vue.js中的基础知识

    动态类名绑定: 动态组件 VUE给我们提供了一个元素叫component,使用is特性来实现动态的挂载不同的组件。

  • Vue知识点合集

    Vue vue.js中el是什么vue 基础知识Vue杂七杂八的知识点(此篇比较老了)指令vue v-text &...

  • Vue基础知识总结

    请阅读以下博客,通俗易懂 Vue基础知识总结 Vue.js——60分钟快速入门 Vue.js——60分钟组件快速入...

  • VueJs

    介绍 官方文档Vue.js开源项目速查表网友资料 基础知识 数据绑定 v-bind&v-model&:value ...

  • Part 7: 测试Vue.js中的Slots插槽

    Test Vue.js Slots in Jest 测试Vue.js中的Slots插槽 Learn how to ...

  • Vue.js基础知识

    1.安装-使用 引入操作步骤:(1)进入vue.js官网:https://cn.vuejs.org/v2/guid...

  • vue.js基础知识

    vue 一个mvvm框架(库),类似于angular,拥有比较容易上手的AIP。它是一套构建用户界面的 渐进式框架...

  • Vue.js基础知识

    什么是Vue.js? Vue.js是目前最火的前端主流框架之一,和Angular、React一起,并成为前端三大框...

  • Vue小知识

    Vue基础知识 Vue框架作用 拓展html的功能,属性 vue是一套构建用户界面的 渐进式框架,Vue.js 的...

网友评论

      本文标题:vue.js中的基础知识

      本文链接:https://www.haomeiwen.com/subject/heojgftx.html