this.$dialog({
title: '不错哦',
component: () => <Test name={ this.name } onConfirm={ this.handleComfirm }/>,
})
npm i create-dialog
import Dialog from 'create-dialog'
Vue.use(Dialog, { store, router }) // 如果没有路由和Vuex,就不传
然后就可以愉快的使用了
this.$dialog({
title: '不错哦',
component: () => <Test name={ this.name } onConfirm={ this.handleComfirm }/>,
})
注意: 如果你的项目中没有使用element-ui,或者你的babel配置excludes掉了node_modules,import语句需要改为
import Dialog from 'create-dialog/dist/create-dialog.common.js'
import 'create-dialog/dist/create-dialog.css'
这是因为默认的import路径是源码的版本,你可以引用打包之后的版本
Dialog基于element-ui的Dialog组件二次封装,因此拥有el-dialog的所有props,这些props都通过参数传递
this.$dialog({
title: '哎哟不错哦',
width: '600px',
showClose: false,
component: () => <Test />,
...
})
Dialog自动监听了组件的cancel和done事件,组件里$emit这两个事件都可以使弹窗关闭
// in Test.vue
...
methods: {
async someMethods() {
await postSomeData()
this.$emit('done') // 弹窗关闭
},
}
// in Index.vue
...
this.$dialog({
title: '哎哟不错哦',
// 你可以监听done事件来刷新数据,当然你也可以使用其它的任何事件,或者回调
component: () => <Test onDone={ this.fetchSomeData }/>,
})
$dialog方法也会暴露close方法,调用它也可以关闭弹窗
const dialog = this.$dialog({
title: '哎哟不错哦',
component: () => <Test />,
})
dialog.close()
由于使用了jsx,所以你必须使用首字母大写的形式来使用组件。 React的jsx文档
但是,如果你已经在Vue中注册过了这个组件,那就可以突破jsx的这个限制
import Text from './Text.vue'
...
components: {
text: Text
},
...
this.$dialog({
title: '哎哟不错哦',
// 注册了之后就可以使用注册之后的组件名作为tag
component: () => <test onDone={ this.fetchSomeData }/>,
})
当弹窗消失(隐藏)时,传入的组件会被销毁
Enjoy.
npm i create-dialog
import Dialog from 'create-dialog'
Vue.use(Dialog, { store, router }) // if no store or router, ignore it
then You can use it
this.$dialog({
title: 'amazing',
component: () => <Test />,
...
})
Note!! If you don't use element-ui in your project, You must change the import target as below:
import Dialog from 'create-dialog/dist/create-dialog.common.js'
import 'create-dialog/dist/create-dialog.css'
You can check all props here
this.$dialog({
title: 'dialog',
width: '600px',
showClose: false,
component: () => <Test />,
...
})
in Text.vue as example above, you can close by emit events
this.$emit('done') // dialog will be close
this.$emit('cancel') // dialog will be close too
Due to the limit of jsx,you must capitalize your custom name.
But, if you register your component, you can use the registed
import Text from './Text.vue'
...
components: {
// register component
text: Text
},
...
this.$dialog({
title: 'dialog',
// use the registed name
component: () => <test onDone={ this.fetchSomeData }/>,
})
The component will be destroyed when dialog hidden.