脚手架用的vue-cli,我现在需要点击按钮弹出来一个iView Modal 需要是一个表单,但是官网 实例只有点击弹出一个input
this.$Modal.confirm({
render: (h) => {
return h('Input', {
props: {
autofocus: false,
placeholder: '数据名称'
},
on: {
input: (val) => {
this.createName = val
}
}
})
}
我看有人写一个自定义template 在页面引入后 在return引入这个模板好麻烦,如何在当前页面拼一个出来。有大神能给下实例不。
https://segmentfault.com/a/11... 不想这样引用。
没用过iview
可以尝试使用 jsx,然后在 render哪里写jsx
怎么配置 vue 的jsx 相关插件,出门右转vue官网,很详细。