vue_oxc_toolkit 0.3.0

A parser to generate semantically correct AST from Vue SFCs for code linting purposes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <div>

  </div>
</template>

<script>
import { ref } from 'vue';

export default {
  props: {
    msg: String
  }
}
</script>