1.0.1 • Published 8 years ago

vue-page-builder v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

A Modular Page Builder for Vue 2.0

Install

Via NPM

$ npm install vue-page-builder --save

Usage

import PageBuilder from 'vue-page-builder'

Components

  • Section
  • Row
  • Column
  • Text
  • Image
  • Video
  • Quote
  • Carousel

Custom Components

Example

{
  content: [
    {
      section : [
        {
          row: [
            {
              component: "text",
              column_size: 6,
              column_offset: 0,
              content: "Hello"
            },
            {
              component: "text",
              column_size: 6,
              column_offset: 0,
              content: "World"
            }
          ]
        },
        {
          row: [
            {
              component: "img",
              column_size: 12,
              column_offset: 0,
              content: "test.jpg"
            }
          ]
        }
      ]
    }
  ]
}

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email jeroen@herczeg.be instead of using the issue tracker.

Credits

License

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