Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/carlodevil/vue-cdn-template

A Vue and TailwindCSS cdn template.
https://github.com/carlodevil/vue-cdn-template

tailwindcss vue3

Last synced: 3 days ago
JSON representation

A Vue and TailwindCSS cdn template.

Awesome Lists containing this project

README

        

# Vue CDN Template

This repo contains a boiler-template for minimal Vue and TailwindCSS web applications.

It is perfect for testing and prototyping purposes.

## Adding the template as a user snippet to VS Code

This template can be used as a user snippet for html files in VS Code. In order to add the snippet, follow these steps:

1. On MacOS, click on Code > Preferences > User Snippets
1. Click on 'html'
1. Add the following script:

```json
{
"Vue3 TailwindCSS Boilerplate": {
"prefix": ["vuetail", "vue-tail", "vue-tailwindcss"],
"body": [
"",
"",
"\n",
"\t",
"\t",
"\tTemplate",
"\t",
"\t",
"\t",
"",
"\n",
"\t

",
"\t\t",
"\t
",
"\t",
"\t\tconst App = {",
"\t\t\t//App Data Here",
"\t\t}",
"\t\tconst app = Vue.createApp(App)",
"\t\t//Your Components Here",
"\n\t\tapp.mount('#app')",
"\t",
"",
"\n\n"

],
"description": "A Vue 3 and TailwindCSS CDN template."
}
}
```

4. Save snippet

You will now be able to call the code snippet in VS Code by typing *vuetail*, *vue-tail*, or *vue-tailwindcss* and clicking enter.