VUE 自定义组件模板的方法详解
程序员文章站
2022-09-07 09:27:19
本文实例讲述了vue 自定义组件模板的方法。分享给大家供大家参考,具体如下:
先说下需求吧,因为客户的用户群比较大,如果需求变动,频繁更新版本就需要重新开发和重新发布,影...
本文实例讲述了vue 自定义组件模板的方法。分享给大家供大家参考,具体如下:
先说下需求吧,因为客户的用户群比较大,如果需求变动,频繁更新版本就需要重新开发和重新发布,影响用户的体验,考虑到这一层就想到,页面展示效果做动态可配,需求更新时,重新配置一份模板录入到数据库,然后根据用户选择的模板进行展示。
关于页面展示做的动态可配,我是参考vue的component组件方式,开始时可能会遇到组件定义后不能加载的情况,并在控制台如下错误:you are using the runtime-only build of vue where the template compiler is not available.......解决办法,如下图文件中添加 'vue$': 'vue/dist/vue.esm.js', 即可,具体原因自行百度吧。
开始上代码:
1.最初版本的代码,这个是刚开始的时候测试一些想法
<template> <div > <ai-panel :testdata="testdata"></ai-panel> </div> </template> <script> export default { data(){ return { testdata:{name:"李四"} } } ,components: { // 自定义组件 aipanel: { name: 'aipanel', template: '<span>{{testdata.name}}</span>', props: ['testdata']//用作接收父级组件传递的参数 :testdata="testdata" 即可 //这里还可以继续定义 子组件的 data,methods等 } } } </script>
通过测试发现一些地方并不能*的控制,例如后台传过来的html语句并不能很好的放入到子组件的template中,然后又根据vue的api重新优化了一版,如下
1.首先创建一个工具类 的js文件,js中添加如下代码
import vue from 'vue'//引入vue export function docomponents(opt){ //opt 调用时传入 可以包含template的html语句,data中需要绑定的数据等 let billitem = opt.billitem let billhtml =opt.billhtml; const mycomponent = vue.extend({ template: billhtml, data() { return { billitem:billitem } }, methods: {// 子模板中自定义事件 } }) // $mount(id)通过查找页面id手动挂载到页面 new mycomponent().$mount("#testtemplate") }
2.页面代码如下
<template> <div> <div class="card main-form"> <!-- ai-btn是我自定义的按钮,大佬们可以换成element组件的按钮哈 --> <ai-btn title="查询" icon="el-icon-search" lcss="btn-org" @onclick="query"/> </div> <div ref="testtemplate" id="testtemplate"> </div> </div> </template> <script> import * as temp from "@/api/mytemplate";//上面 定义的js文件 export default { data(){ return { billitem:{name:"测试"}, billhtml:'<div class="org">{{billitem.name}}</div>', } }, methods:{ noresponse(){ alert("系统升级中,暂时无法提供查询!"); }, query: function() { this.$http.post('/billing/qcdr/qrybillinfo').then((res)=> { //如果后台接口有数据可以 从res获取后台数据,我这里就直接用页面的测试数据了 let option = { "billhtml":this.billhtml, "billitem":this.billitem } temp.docomponents(option);//加载模板 }, (error)=>{ this.$message.error("系统繁忙"); }) } } } </script>
这样每次查询都可以根据后台的返回的html重新生成页面 这样可以做到只需要搭建一次框架,后期可以根据客户的需求,重新配置模板,将模板中的html保存到数据库,通过指定模板展示,页面查询时,获取对应模板即可展示。
希望本文所述对大家vue.js程序设计有所帮助。