# Parses Vue builtin directives ==> Document( Element( OpenTag(StartTag, TagName, Attribute(AttributeName, Is, AttributeValue), EndTag), CloseTag(StartCloseTag, TagName, EndTag))) # Parses Vue :is shorthand syntax ==> Document( Element( OpenTag(StartTag, TagName, Attribute(AttributeName, Is, AttributeValue),EndTag), CloseTag(StartCloseTag, TagName, EndTag))) # Parses Vue @click shorthand syntax ==> Document( Element( OpenTag(StartTag, TagName, Attribute(AttributeName, Is, AttributeValue), EndTag), Text, CloseTag(StartCloseTag, TagName, EndTag))) # Parses Vue @submit.prevent shorthand syntax
==> Document( Element( OpenTag(StartTag, TagName, Attribute(AttributeName, Is, AttributeValue), EndTag), CloseTag(StartCloseTag, TagName, EndTag))) # Parses Vue Dynamic Arguments Link ==> Document( Element( OpenTag(StartTag, TagName, Attribute(AttributeName, Is, AttributeValue), EndTag), Text, CloseTag(StartCloseTag, TagName, EndTag)))