是否可以使用Vue-sweetalert2 html作为vue组件?

时间:2018-11-23 14:59:17

标签: vue.js sweetalert2 vue-sweetalert2

我使用此软件包https://www.npmjs.com/package/vue-sweetalert2,并且希望将Vue.swal中的vue组件作为html过去。

ch.basic_ack

但是什么也没有。我是VueJs的新手,但我仍然不完全了解如何将组件作为html插入。

1 个答案:

答案 0 :(得分:0)

是的!有可能! ...经过数小时的研究,我成功了。

这是方法:

您需要在此字符之间包含模板的所有逻辑``

您还需要编辑 vue.config.js 文件,并在configurewebpack对象中添加以下内容:'vue $':'vue / dist / vue.esm.js'

configureWebpack: {
  resolve: {
    alias: {
      'src': resolveSrc('src'),
      'chart.js': 'chart.js/dist/Chart.js',

      // add this line for include components inside swal alert
      'vue$':'vue/dist/vue.esm.js'
    }

完成此操作后,您必须重新启动项目“ npm run dev

这是我完整的示例,已经过测试并且可以正常工作

openSweet() {
      Vue.component('my-comp', {
          template: `
                <div class="card-content">
                  <div class="span2">
                        <div class="col-sm-6 col-md-2 col-lg-3">
                            <div class="row">
                              <div style="margin-top: 6px;" >
                                <p-switch v-model="switchTrip.state" type="primary" on-text="ON" off-text="OFF" style="justify-content:center"></p-switch>
                                <h5 class="card-title" style="margin-left: 25px;">Recorridos</h5>
                              </div>
                            </div>

                            <div class="row">
                              <div style="margin-top: 6px;" >
                                <p-switch v-model="switchVel.state" type="primary" on-text="ON" off-text="OFF" style="justify-content:center"></p-switch>
                                <h5 class="card-title" style="margin-left: 25px;">Velocidad</h5>
                              </div>
                            </div>

                        </div>
                  </div>
                  <div class="span2">
                        <div class="col-sm-6 col-md-4 col-lg-3">
                            <div class="row">
                              <div >
                                <input type="search" class="form-control input-sm" placeholder="km / h" v-model="vmax">
                                <h5 class="card-title">Vel. Max</h5>
                              </div>
                            </div>

                            <div class="row">
                              <div>
                                <input type="search" class="form-control input-sm" placeholder="minutos" v-model="tol">
                                <h5 class="card-title">Tolerancia</h5>
                              </div>
                            </div>
                        </div>
                  </div>
                </div>
          `,
        data () {
          return {
            switchVel: {
              state: false
            },
            switchEvent: {
              state: false
            },
            switchTrip: {
              state: false
            },
            search: '',
            vmax: '',
            tol: ''
          }
        },
        components: {
            [Button.name]: Button,
            Card,
            PSwitch
        }
      })
      new Vue({
        el: '#modal',
        beforeCreate:  () => {
          swal({
            titleText: "Descarga de Reportes",
            showCancelButton: true,
            cancelButtonText: 'Cancelar',
            confirmButtonText: 'Descargar',
            // confirmButtonAriaLabel: 'glyphicon glyphicon-ok-sign',
            // cancelButtonAriaLabel: 'glyphicon glyphicon-remove-sign',
            confirmButtonColor: '#3085d6',
            cancelButtonColor: '#d33',
            width: 800,
            html: '<div id="modal"><my-comp></my-comp></div>'
          })
        }
      })
    }

希望对您有帮助

来自阿根廷的问候

https://github.com/aledc7