An open API service indexing awesome lists of open source software.

https://github.com/lukasborawski/webstorm-vue-template

WebStorm IDE Vue.js new file template.
https://github.com/lukasborawski/webstorm-vue-template

ide sfc template vue vuejs web webstorm

Last synced: about 1 year ago
JSON representation

WebStorm IDE Vue.js new file template.

Awesome Lists containing this project

README

          

### WebStorm IDE Vue.js new SFC file template

---

Copy code that you can find below and past it in here.

```Preferences ➡️ Editor ➡️ File and Code Templates ➡️ Vue Single File Component```

```vue.js

#[[$END$]]#

import { defineComponent } from 'vue'

export default defineComponent({
name: '${COMPONENT_NAME}',
inheritAttrs: false,
})

```

For you personal preference you can add as well styles definition.

```vue.js

#[[$END$]]#

import { defineComponent } from 'vue'

export default defineComponent({
name: '${COMPONENT_NAME}',
inheritAttrs: false,
})

```

More about **WebStore IDE** you can find [here](https://www.jetbrains.com/webstorm).