Socket
Socket
Sign inDemoInstall

md-time-portlet

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    md-time-portlet

A Vue.js Plugin


Version published
Weekly downloads
1
Maintainers
1
Install size
71.3 kB
Created
Weekly downloads
 

Readme

Source

md-time-portlet

npm npm vue2

A Vue.js Plugin

Table of contents

Installation

npm install --save md-time-portlet

Default import

Install all the components:

import Vue from 'vue'
import MdTimePortlet from 'md-time-portlet'

Vue.use(MdTimePortlet)

Use specific components:

import Vue from 'vue'
import { Test } from 'md-time-portlet'

Vue.component('test', Test)

⚠️ A css file is included when importing the package. You may have to setup your bundler to embed the css in your page.

Distribution import

Install all the components:

import 'md-time-portlet/dist/md-time-portlet.css'
import MdTimePortlet from 'md-time-portlet/dist/md-time-portlet.common'

Vue.use(MdTimePortlet)

Use specific components:

import 'md-time-portlet/dist/md-time-portlet.css'
import { Test } from 'md-time-portlet/dist/md-time-portlet.common'

Vue.component('test', Test)

⚠️ You may have to setup your bundler to embed the css file in your page.

Browser

<link rel="stylesheet" href="md-time-portlet/dist/md-time-portlet.css"/>

<script src="vue.js"></script>
<script src="md-time-portlet/dist/md-time-portlet.browser.js"></script>

The plugin should be auto-installed. If not, you can install it manually with the instructions below.

Install all the components:

Vue.use(MdTimePortlet)

Use specific components:

Vue.component('test', MdTimePortlet.Test)

Source import

Install all the components:

import Vue from 'vue'
import MdTimePortlet from 'md-time-portlet/src'

Vue.use(MdTimePortlet)

Use specific components:

import Vue from 'vue'
import { Test } from 'md-time-portlet/src'

Vue.component('test', Test)

⚠️ You need to configure your bundler to compile .vue files. More info in the official documentation.

Usage

TODO

Example

TODO


Plugin Development

Installation

The first time you create or clone your plugin, you need to install the default dependencies:

npm install

Watch and compile

This will run webpack in watching mode and output the compiled files in the dist folder.

npm run dev

Use it in another project

While developping, you can follow the install instructions of your plugin and link it into the project that uses it.

In the plugin folder:

npm link

In the other project folder:

npm link md-time-portlet

This will install it in the dependencies as a symlink, so that it gets any modifications made to the plugin.

Publish to npm

You may have to login to npm before, with npm adduser. The plugin will be built in production mode before getting published on npm.

npm publish

Manual build

This will build the plugin into the dist folder in production mode.

npm run build

License

MIT

Keywords

FAQs

Last updated on 27 Mar 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc