New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@markbind-dummy/vue-components

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@markbind-dummy/vue-components

Bootstrap components built with Vue.js

latest
Source
npmnpm
Version
1.1.36
Version published
Maintainers
1
Created
Source

vue-strap

This is a forked project from VueStrap, modified for use in MarkBind.

Bootstrap components built with Vue.js.

This repository contains a set of native Vue.js components based on Bootstrap's markup and CSS. As a result no dependency on jQuery or Bootstrap's JavaScript is required. The only required dependencies are:

  • Vue.js (required ^v2.x.x, test with v2.5.16).
  • Bootstrap CSS (required 4.x.x, test with 4.1.1). VueStrap doesn't depend on a very precise version of Bootstrap.

Installation

Browser globals

The dist folder contains vue-strap.js and vue-strap.min.js with all components exported in the window.VueStrap object.

<script src="path/to/vue.js"></script>
<script src="path/to/vue-strap.js"></script>
<script>
    var vm = new Vue({
        components: {
            alert: VueStrap.alert
        },
        el: "#app",
        data: {
            showRight: false,
            showTop: false
        }
    })
</script>

Docs

See the documentation with live editable examples.

Local Setup

  • Install with npm install.
  • Build with npm run build.

Lint the code for any code and style errors using ESLint

  • For Unix: npm run lint
  • For Windows: npm run lintwin

License

vue-strap is licensed under The MIT License.

Keywords

bootstrap

FAQs

Package last updated on 21 Apr 2020

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