3 releases
0.0.3 | Sep 24, 2022 |
---|---|
0.0.2 | Sep 23, 2022 |
0.0.1 | Sep 23, 2022 |
#289 in Text editors
263 downloads per month
225KB
7.5K
SLoC
tree-sitter-vue
Vue (Vue v2.6.0 Template Syntax) grammar for tree-sitter
Note: This grammar is not responsible for parsing embedded languages, see Multi-language Documents for more info.
Install
npm install tree-sitter-vue tree-sitter
Usage
const Parser = require("tree-sitter");
const Vue = require("tree-sitter-vue");
const parser = new Parser();
parser.setLanguage(Vue);
const sourceCode = `
<template>
Hello, <a :[key]="url">{{ name }}</a>!
</template>
`;
const tree = parser.parse(sourceCode);
console.log(tree.rootNode.toString());
// (component
// (template_element
// (start_tag
// (tag_name))
// (text)
// (element
// (start_tag
// (tag_name)
// (directive_attribute
// (directive_name)
// (directive_dynamic_argument
// (directive_dynamic_argument_value))
// (quoted_attribute_value
// (attribute_value))))
// (interpolation
// (raw_text))
// (end_tag
// (tag_name)))
// (text)
// (end_tag
// (tag_name))))
License
MIT © Ika
Dependencies
~2.7–4MB
~71K SLoC