New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vue-instant-bootstrap-modal

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-instant-bootstrap-modal

Bootstrap modal component for use with awesome Vue

  • 1.0.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

vue-instant-bootstrap-modal

Bootstrap modal component for use with awesome Vue

Installation

# yarn
yarn add vue-instant-bootstrap-modal

# npm
npm install --save vue-instant-bootstrap-modal

Example

Markup

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vue-instant-bootstrap-modal</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  </head>
  <body>
    <div id="app">
      <vue-instant-bootstrap-modal ref="Modal">
        <div class="modal-header">
          <h4>This is modal header</h4>
        </div>
        <div class="modal-body">
          This is modal body
        </div>
        <div class="modal-footer">
          <button class="btn btn-info" @click="$refs.Modal.hide()">
            Close modal
          </button>
        </div>
      </vue-instant-bootstrap-modal>
      <button class="btn btn-primary" @click="$refs.Modal.show()">
        Open modal
      </button>
    </div>
    <!-- your script goes here -->
  </body>
</html>

Script

import Vue from 'vue'
import VueInstantBootstrapModal from 'vue-instant-bootstrap-modal'

new Vue({
  el: '#app',
  components: { VueInstantBootstrapModal },
});

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# run unit tests
npm run unit

# run e2e tests
npm run e2e

# run all tests
npm test

For detailed explanation on how things work, checkout the guide and docs for vue-loader.

FAQs

Package last updated on 21 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc