Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

vuejs/rollup-plugin-vue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ba64fde · Apr 11, 2019
May 9, 2018
Jan 17, 2019
May 1, 2018
Jan 14, 2019
Apr 11, 2019
Jan 17, 2019
Feb 20, 2019
Feb 5, 2019
Feb 5, 2019
May 5, 2018
May 2, 2018
Jan 14, 2019
Sep 9, 2016
Apr 11, 2019
Jun 15, 2017
Jan 10, 2017
Feb 20, 2019
Jan 14, 2019
Feb 5, 2019
Apr 11, 2019
Jan 14, 2019
Jan 14, 2019
May 9, 2018
Apr 11, 2019

Repository files navigation

Introduction

As vue-loader is for webpack and vueify is for browserify, similarly its for rollup. As we know, webpack and browserify concat stuff and make it runnable in browser. Its difficult to share .vue components. Now roll your Vue components.

With rollup you can break your application into reusable modules.

Build Status Coverage Status

Usage

This document applies to v4.0+. If you are looking for older versions, docs are here

import commonjs from 'rollup-plugin-commonjs' 
import VuePlugin from 'rollup-plugin-vue'

export default {
  entry: 'main.js',
  plugins: [
    commonjs(),
    VuePlugin(/* VuePluginOptions */)
  ]
}

See available options for VuePluginOptions.

Security

If you discover any security related issues, please email hi@znck.me instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.