gpt4 book ai didi

javascript - 在 sweetalert2 内容中使用 vue 组件

转载 作者:搜寻专家 更新时间:2023-10-30 22:15:40 29 4
gpt4 key购买 nike

我有几个普通的Sweetalert2 Vue 中的模态项目。我想在警报中使用自定义组件。例如:

<template>
<h1>Hello {{name}}</h1>
</template>
<script>
module.exorts: {
props: ["name"]
}
</script>

my_template.vue

并且,在我的 sweetalert 模态中:

swal({
titleText: "Hi",
html: '<my-template name="hello"></my-template>'
});

我不确定这是否可能或如何去做。

最佳答案

技术上它看起来是可能的:

Vue.component('my-component', {
template: '<div>A custom component!</div>'
})

new Vue({
el: '#modal',
beforeCreate: swal({
titleText: "Hi",
html: '<div id="modal"><my-component></my-component></div>'
})
})

但您可能希望将其包装在一个函数中。看看我的 fiddle :

JS Fiddle

这只是一个想法,对我来说它看起来不太好,但仍然有效。另外我必须提到,每次以这种方式打开对话框时,您都会创建新的 vue 实例。

选项 2 从评论到我的回答:

Vue.component('my-component', {
template: '<div>A custom component!</div>'
})

swal({
html: "<my-component></my-component>"
})

new Vue({
el: swal.getHtmlContainer()
})

Fiddle

关于javascript - 在 sweetalert2 内容中使用 vue 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48683390/

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