Git Product home page Git Product logo

ocken / vuesienna Goto Github PK

View Code? Open in Web Editor NEW

This project forked from santiagoaloi/vuesienna

0.0 0.0 0.0 14.94 MB

⚡️ Vue3, Vuetify3, Vite3, , Pinia, State Persistence, Pages, Layouts, Auto Import ['components, libs, plugins] , Macros, CSS Shortcuts, Themes, Firebase Authentication, VueJS best practices.

Home Page: https://santiagoaloi.github.io/VueSienna/

JavaScript 29.13% CSS 1.26% HTML 0.40% Vue 67.95% SCSS 1.26%

vuesienna's Introduction

image image image image

🔗 Live preview

Features


CSS shortcuts


@use 'vuetify';

.buttonClass {
  @extend .text-white, .mx-2;
}
<VBtn class="buttonClass"> ... </VBtn>

Auto import plugins


import { Vue } from '@U/instanciateVue'

// Init Vue and set new user on auth changes.
auth.onAuthStateChanged(async user => {
  Vue(user)
})
const modules = import.meta.globEager('@M/*.js')
export default app => Object.values(modules).map(m => m.install(app))
import { router } from '@M/routes'

export const install = app => {
  const pinia = createPinia()

  // Router can be used in any pinia store module.
  pinia.use(({ store }) => {
    store.router = markRaw(router)
  })

  app.use(pinia)
}

Frameworks


  • Vue 3 - Progressive JavaScript Framework
  • Vuetify 3 - Material Design Framework

Recommended IDE Setup


Plugins


Coding Style


Project Setup


Yarn install

Compile and Hot-Reload for Development

yarn dev

Compile and Minify for Production

yarn build

vuesienna's People

Contributors

santiagoaloi avatar adverich avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.