vue_oxc_toolkit 0.13.0

DEPRECATED: Use vue-oxlint-toolkit instead
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <div>
    {{ count }}
  </div>
</template>

<script lang="js" setup>
const count = 1;
</script>

<style>
div {
  color: red;
}
</style>