Atomx
Atom(not the editor) tools for VSCode.
Features
- Snippets
- Syntax-highlighting
Quick Start
Install Atomx
Usage
create a file named xxx.atom ;
write word atom or template and type Tab . Then, there's template code below:
<template>
</template>
<script type="config">
{
props: {},
data: {},
components: {}
}
</script>
<script type="php">
function render(ctx) {
return parent::render(ctx);
}
</script>
<script>
export default {
mounted() {},
methods: {}
};
</script>
<style lang="less" scoped>
</style>
other snippets include atom:template , atom:config , atom:php , atom:js , atom:style .
| |