Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 271 Bytes

plugin.md

File metadata and controls

20 lines (17 loc) · 271 Bytes

Plugin

Dative Plugin

  var plugin = {
    install(Dative, options){
      Dative.prototype.plugname = options.name || "Plugin Test"
    }
  }

Usage

 Dative.use(plugin);
 // with options
 Dative.use(plugin, { 
    name: "Plugin-namex" 
 })