1. vue-fullpage-modal
vue fullpage style modal
vue-fullpage-modal
Package: vue-fullpage-modal
Created by: medistream-team
Last modified: Wed, 24 Jan 2024 09:14:34 GMT
Version: 0.5.4
License: MIT
Downloads: 223
Repository: https://github.com/medistream-team/vue-fullpage-modal

Install

npm install vue-fullpage-modal
yarn add vue-fullpage-modal

Version License: MIT License: MIT

Documentation

Checkout Documentation📝

Install

 npm install vue-fullpage-modal

Usage

Plugin

 import FullpageModal from 'vue-fullpage-modal'

Vue.use(FullpageModal)

Component

 <template>
  <div>
    <img @click="openModal" src="/logo.png" >
  </div>
</template>
<script>
import HelloWorld from './HelloWorld'

export default {
// ...
  methods: {
    openModal() {
      this.$FModal.show(
        { component: HelloWorld },
        { msg: "Welcome to Your Vue.js App" }
      )
    }
  }
}
</script>

Contributor

👥 Medistream

📝 License

Copyright © 2021 Medistream

This project is MIT licensed.

Dependencies

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin