![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
vue-instant-bootstrap-modal
Advanced tools
Bootstrap modal component for use with awesome Vue
# yarn
yarn add vue-instant-bootstrap-modal
# npm
npm install --save vue-instant-bootstrap-modal
<!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>
import Vue from 'vue'
import VueInstantBootstrapModal from 'vue-instant-bootstrap-modal'
new Vue({
el: '#app',
components: { VueInstantBootstrapModal },
});
# 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
Bootstrap modal component for use with awesome Vue
We found that vue-instant-bootstrap-modal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.