class VueCompiler::Node::Element

Attributes

attributes[R]
children[R]
name[R]

Public Class Methods

new(name, attributes = [], children = []) click to toggle source
# File lib/vue_component_compiler/node.rb, line 23
def initialize(name, attributes = [], children = [])
  @name = name
  @attributes = attributes
  @children = children
end