Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created February 3, 2021 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/722d4c22b82b602ee5aba995cb307b2e to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/722d4c22b82b602ee5aba995cb307b2e to your computer and use it in GitHub Desktop.
import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
// añadimos tailwind css
import "@/assets/css/tailwind.css";
createApp(App)
.use(store)
.use(router)
.mount("#app");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment