@vbarbarosh/vue-modal

1.0.0 • Public • Published

An abstraction for working with modals in Vue.

This is an answer to a question "how should I work with modals in Vue?".

In short, for each modal you should create two files: modal-NAME.vue and modal_NAME.js. The former would be an ordinary Vue component with all of HTML, JavaScript, and CSS in it, while the latter is necessary to represent your modal as a simple function.

Installation

npm i @vbarbarosh/vue-modal

Usage

modal-hello.vue

<template>
    <div>
        <button v-on:click="modal.return(true)">Confirm</button>
        <button v-on:click="modal.return(false)">Cancel</button>
    </div>
</template>

<script>
    const modal_hello = {
        props: ['value'],
        inject: ['modal'],
    };

    export default modal_hello;
</script>

modal_hello.js

import vue_modal from '@vbarbarosh/vue-modal';

function modal_hello(value)
{
    return vue_modal('<modal-hello v-model="value" />', {data: {value}});
}

export default modal_hello;

app.js

import Vue from 'vue';
import modal_hello from './modal_hello.js';

Vue({
    el: '#app',
    methods: {
        hello: async function () {
            await modal_hello().promise();
        },
    }
});

Readme

Keywords

Package Sidebar

Install

npm i @vbarbarosh/vue-modal

Weekly Downloads

3

Version

1.0.0

License

ISC

Unpacked Size

19.2 kB

Total Files

7

Last publish

Collaborators

  • vbarbarosh