0.1.9 • Published 5 years ago

sharedtasks v0.1.9

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

sharedtasks

npm npm vue2

A Vue.js Plugin

Table of contents

Installation

npm install --save sharedtasks

Default import

Install all the components:

import Vue from 'vue'
import Sharedtasks from 'sharedtasks'

Vue.use(Sharedtasks)

Use specific components:

import Vue from 'vue'
import { Test } from 'sharedtasks'

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 'sharedtasks/dist/sharedtasks.css'
import Sharedtasks from 'sharedtasks/dist/sharedtasks.common'

Vue.use(Sharedtasks)

Use specific components:

import 'sharedtasks/dist/sharedtasks.css'
import { Test } from 'sharedtasks/dist/sharedtasks.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="sharedtasks/dist/sharedtasks.css"/>

<script src="vue.js"></script>
<script src="sharedtasks/dist/sharedtasks.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(Sharedtasks)

Use specific components:

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

Source import

Install all the components:

import Vue from 'vue'
import Sharedtasks from 'sharedtasks/src'

Vue.use(Sharedtasks)

Use specific components:

import Vue from 'vue'
import { Test } from 'sharedtasks/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 sharedtasks

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

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.0

5 years ago

0.0.1

5 years ago

0.0.0

5 years ago