@veams/plugin-dom
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

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

npm install @veams/plugin-dom --save

Yarn

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');

Readme

Keywords

Package Sidebar

Install

npm i @veams/plugin-dom

Homepage

veams.org/

Weekly Downloads

52

Version

1.0.3

License

MIT

Unpacked Size

5.26 kB

Total Files

10

Last publish

Collaborators

  • andy-gutsche
  • sebastian-fitzner