gpt4 book ai didi

javascript - 自定义组件 iside vue js 对话框

转载 作者:行者123 更新时间:2023-12-05 00:31:24 25 4
gpt4 key购买 nike

我正在使用这个 vue js 插件:https://github.com/Godofbrowser/vuejs-dialog
按照指南,我正在尝试将自定义组件集成到我的对话框中。对话框显示,但没有内容或自定义组件显示。此外,配置似乎不起作用。
我在这里错过了什么吗?我跟着文档。
这是我的 main.js 的内容:

import VuejsDialog from 'vuejs-dialog';
import 'vuejs-dialog/dist/vuejs-dialog.min.css';

Vue.use(VuejsDialog);

import CustomView from '@/components/HDSLogin';
const customView = 'my-unique-view-name';
Vue.dialog.registerComponent(customView, CustomView)
然后我在我的组件中使用以下方法来触发对话框
this.$dialog.alert( {
view: customView, // can be set globally too, value is 'my-unique-view-name'
html: false,
animation: 'fade',
okText: "Ok",
cancelText: "Cancel",
backdropClose: true
});
我定义了我的 CustomView HdsLogin.vue 中的组件:
<template>
<div >
<p>Content</p>
</div>
</template>

<script>
// import into project
import Vue from 'vue';
import VuejsDialog from 'vuejs-dialog';
import VuejsDialogMixin from 'vuejs-dialog/dist/vuejs-dialog-mixin.min.js'; // only needed in custom components
import 'vuejs-dialog/dist/vuejs-dialog.min.css';
Vue.use(VuejsDialog);

export default {
mixins: [VuejsDialogMixin],
};
</script>

<style scoped="">
button {
width: 100%;
margin-bottom: 10px;
float: none;
}
</style>
通过上述设置,将显示一个空白对话框:
enter image description here

最佳答案

这一点不容易被发现。但是您在示例之后犯了一个小错字。
this.$dialog.alert() 接受2个参数,其定义为:

Plugin.prototype.alert = function (message = null, options = {}) {
message && (options.message = message)
return this.open(DIALOG_TYPES.ALERT, options)
}
因此,在定义 null 之前,您必须定义第一个参数(例如 options)。 .
您的电话应如下所示:
-  this.$dialog.alert( {
+ this.$dialog.alert(null, {
view: customView, // can be set globally too
html: false,
animation: 'fade',
okText: "Ok",
cancelText: "Cancel",
backdropClose: true
});
此外,您的 HdsLogin 中可能不需要所有这些导入。零件。

关于javascript - 自定义组件 iside vue js 对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69896676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com