@veams/plugin-dom

The VeamsDOM plugin is simple plugin for which you need to pass a DOM handler like jQuery. For some other plugins VeamsDOM is a requirement.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@veams/plugin-dom
001.0.35 years ago5 years agoMinified + gzip package size for @veams/plugin-dom in KB

Readme

Veams DOM Plugin (`@veams/plugin-dom')
The Veams DOM Plugin is simple plugin for which you need to pass a DOM handler like jQuery.
TypeScript is supported.

Installation

NPM

``` bash npm install @veams/plugin-dom --save
### Yarn 

``` bash 
yarn add @veams/plugin-dom

Usage

import $ from 'jquery';
import Veams from '@veams/core';
import VeamsDOM from '@veams/plugin-dom';

// Intialize core of Veams
Veams.onInitialize(() => {
   	// Add plugins to the Veams system
	Veams.use(VeamsDOM, {
        DOM: $
    });
});

Options

DOM {Function} () => {} (required) - Add a DOM handler by using this option. It should have the same api like jQuery.

Api

After that your DOM instance is available in the Veams object:
Veams.$('.page-wrapper').addClass('is-working');