Vuejs:component动态组件的使用示例

简介: Vuejs:component动态组件的使用示例

image.png

文档

component动态组件很适合在不同组件之间切换,相比v-if判断,要优雅得多

项目结构

$ tree -I node_modules
.
├── package.json
└── src
    ├── App.vue
    ├── components
    │   ├── ComponentA.vue
    │   ├── ComponentB.vue
    │   └── ComponentC.vue
    └── main.js

依赖 package.json

{
  "scripts": {
    "dev": "vue-cli-service serve",
    "build": "vue-cli-service build"
  },
  "dependencies": {
    "vue": "^2.6.14"
  },
  "devDependencies": {
    "@vue/cli-service": "^5.0.8",
    "vue-template-compiler": "^2.6.14",
    "less": "^4.0.0",
    "less-loader": "^8.0.0"
  }
}

入口文件 main.js

import Vue from "vue";
import App from "./App.vue";
new Vue({
  el: "#app",
  render: (h) => h(App),
});

组件 ComponentA.vue

<template>
  <div class="">ComponentA</div>
</template>
<script>
// created at 2023-03-31
export default {
  name: "ComponentA",
};
</script>
<style lang="less"></style>

组件 ComponentB.vue

<template>
  <div class="">ComponentA</div>
</template>
<script>
// created at 2023-03-31
export default {
  name: "ComponentA",
};
</script>
<style lang="less"></style>

组件 ComponentC.vue

<template>
  <div class="">ComponentC</div>
</template>
<script>
// created at 2023-03-31
export default {
  name: "ComponentC",
};
</script>
<style lang="less"></style>

App.vue

<template>
  <div class="app-container">
    <h2>Vue.js component动态组件示例</h2>
    <!-- tabs -->
    <div class="tabs">
      <div
        v-for="item in componentConfigs"
        class="tab-item"
        :class="{ 'tab-item--active': item.value == tab }"
        @click="handleTabClick(item)"
      >
        {{ item.label }}
      </div>
    </div>
    <!-- content -->
    <div class="content">
      <component v-bind:is="currentComponent"></component>
    </div>
  </div>
</template>
<script>
// created at 2022-12-26
import ComponentA from "./components/ComponentA.vue";
import ComponentB from "./components/ComponentB.vue";
import ComponentC from "./components/ComponentC.vue";
const componentConfigs = [
  {
    component: ComponentA,
    value: "A",
    label: "组件 A",
  },
  {
    component: ComponentB,
    value: "B",
    label: "组件 B",
  },
  {
    component: ComponentC,
    value: "C",
    label: "组件 C",
  },
];
export default {
  name: "App",
  data() {
    return {
      tab: "A",
      componentConfigs,
    };
  },
  computed: {
    currentComponent() {
      return componentConfigs.find((item) => item.value == this.tab).component;
    },
  },
  methods: {
    handleTabClick(item) {
      this.tab = item.value;
    },
  },
  created() {},
};
</script>
<style lang="less">
body {
  display: flex;
  justify-content: center;
}
.app-container {
  text-align: center;
}
.tabs {
  display: flex;
  justify-content: center;
  border: 1px solid #808080;
  border-bottom: none;
}
.tab-item {
  width: 200px;
  line-height: 40px;
  text-align: center;
  background-color: #808080;
  color: #fff;
  cursor: pointer;
}
.tab-item--active {
  background-color: #fff;
  color: #000;
}
.content {
  line-height: 500px;
  text-align: center;
  border: 1px solid #808080;
}
</style>

完整代码:https://github.com/mouday/vue-demo/tree/main/packages/vue-component

在线示例:https://mouday.github.io/vue-demo/packages/vue-component/dist/index.html


相关文章
|
22天前
|
JavaScript
在 Vue 中处理组件选项与 Mixin 选项冲突的详细解决方案
【10月更文挑战第18天】通过以上的分析和探讨,相信你对在 Vue 中使用 Mixin 时遇到组件选项与 Mixin 选项冲突的解决方法有了更深入的理解。在实际开发中,要根据具体情况灵活选择合适的解决方案,以确保代码的质量和可维护性。
75 7
|
4天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
4天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
21天前
|
缓存 JavaScript UED
Vue 的动态组件与 keep-alive
【10月更文挑战第19天】总的来说,动态组件和 `keep-alive` 是 Vue.js 中非常实用的特性,它们为我们提供了更灵活和高效的组件管理方式,使我们能够更好地构建复杂的应用界面。深入理解和掌握它们,以便在实际开发中能够充分发挥它们的优势,提升我们的开发效率和应用性能。
43 18
|
16天前
|
缓存 JavaScript UED
Vue 中实现组件的懒加载
【10月更文挑战第23天】组件的懒加载是 Vue 应用中提高性能的重要手段之一。通过合理运用动态导入、路由配置等方式,可以实现组件的按需加载,减少资源浪费,提高应用的响应速度和用户体验。在实际应用中,需要根据具体情况选择合适的懒加载方式,并结合性能优化的其他措施,以打造更高效、更优质的 Vue 应用。
|
20天前
|
前端开发 UED
vue3知识点:Suspense组件
vue3知识点:Suspense组件
29 4
|
19天前
|
JavaScript 前端开发 测试技术
组件化开发:创建可重用的Vue组件
【10月更文挑战第21天】组件化开发:创建可重用的Vue组件
23 1
|
20天前
|
JavaScript 前端开发 Java
《vue3第五章》新的组件,包含:Fragment、Teleport、Suspense
《vue3第五章》新的组件,包含:Fragment、Teleport、Suspense
26 2
|
20天前
|
Java
vue3知识点:Teleport组件
vue3知识点:Teleport组件
25 1
|
23天前
|
存储 JavaScript
Vue 组件间通信的方式有哪些?
Vue组件间通信主要通过Props、Events、Provide/Inject、Vuex(状态管理)、Ref、Event Bus等实现,支持父子组件及跨级组件间的高效数据传递与状态共享。