All Projects → r0r1 → Vuejs Adminlte

r0r1 / Vuejs Adminlte

Admin LTE Starter for Vue JS

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vuejs Adminlte

Vue Admin Beautiful
🚀🚀🚀vue3 admin,vue3.0 admin,vue后台管理,vue-admin,vue3.0-admin,admin,vue-admin,vue-element-admin,ant-design,vue-admin-beautiful-pro,vab admin pro,vab admin plus主线版本基于element-plus、element-ui、ant-design-vue三者并行开发维护,同时支持电脑,手机,平板,切换分支查看不同的vue版本,element-plus版本已发布(vue3,vue3.0,vue,vue3.x,vue.js)
Stars: ✭ 10,968 (+3543.85%)
Mutual labels:  admin-dashboard, admin-template, adminlte
Bootstrap Simple Admin Template
The most reliable HTML, CSS, and JavaScript simple admin template for developing responsive, mobile first web applications on the web.
Stars: ✭ 92 (-69.44%)
Mutual labels:  admin-dashboard, admin-template, adminlte
vue-admin-better
🚀🚀🚀vue admin,vue3 admin,vue3.0 admin,vue后台管理,vue-admin,vue3.0-admin,admin,vue-admin,vue-element-admin,ant-design,vue-admin-beautiful-pro,vab admin pro,vab admin plus,vue admin plus,vue admin pro
Stars: ✭ 12,962 (+4206.31%)
Mutual labels:  adminlte, admin-dashboard, admin-template
stisla-react-free-admin-dashboard
Stisla React Admin Dashboard is a React-based Admin Template that will help you to speed up your project and design your own dashboard UI. You will love it. In this Admin Dashboard, I have included Graphs, Charts, ToastBar, Toggle. This Template is based on the Stisla Admin Dashboard. One of the Top Admin template build in React.
Stars: ✭ 22 (-92.69%)
Mutual labels:  admin-dashboard, admin-template
odoo backend theme
No description or website provided.
Stars: ✭ 16 (-94.68%)
Mutual labels:  admin-dashboard, admin-template
star-admin2-free-admin-template
Star-Admin-2- Free-Bootstrap-Admin-Template
Stars: ✭ 169 (-43.85%)
Mutual labels:  admin-dashboard, admin-template
tailmin
Tailmin - Admin dashboard built with Vue.js and Tailwind CSS
Stars: ✭ 39 (-87.04%)
Mutual labels:  admin-dashboard, admin-template
lightence-admin
Free and easy-to-use admin template based on React 17+
Stars: ✭ 337 (+11.96%)
Mutual labels:  admin-dashboard, admin-template
sakai-vue
Free Vue Admin Template by PrimeVue
Stars: ✭ 308 (+2.33%)
Mutual labels:  admin-dashboard, admin-template
sakai-react
Free React Admin Template
Stars: ✭ 239 (-20.6%)
Mutual labels:  admin-dashboard, admin-template
tntweb-admin
react admin management system template
Stars: ✭ 25 (-91.69%)
Mutual labels:  admin-dashboard, admin-template
Admin
admin panel template built on tailwind css 🎉
Stars: ✭ 268 (-10.96%)
Mutual labels:  admin-dashboard, admin-template
OnceBuilder
OnceBuilder - managment tool, mange projects, templates, plugins in one place.
Stars: ✭ 18 (-94.02%)
Mutual labels:  adminlte, admin-dashboard
Coreui Free Vue Admin Template
Open source admin template based on Bootstrap 5 and Vue 3
Stars: ✭ 2,951 (+880.4%)
Mutual labels:  admin-dashboard, admin-template
Asp-net-Core-Project-with-Admin-Template-Setup
AdminLTE Template Setup with Asp.net Core MVC 2.1 Project
Stars: ✭ 50 (-83.39%)
Mutual labels:  adminlte, admin-template
nextjs-admin-template
Free admin dashboard template based on Next.Js with @paljs/ui component package
Stars: ✭ 266 (-11.63%)
Mutual labels:  admin-dashboard, admin-template
plain-free-bootstrap-admin-template
Free Bootstrap 5 Admin and Dashboard Template that comes with all essential dashboard components, elements, charts, graph and application pages. Download now for free and use with personal or commercial projects.
Stars: ✭ 141 (-53.16%)
Mutual labels:  admin-dashboard, admin-template
Deskapp
DeskApp Admin is a free to use Bootstrap 4 admin template.
Stars: ✭ 296 (-1.66%)
Mutual labels:  admin-dashboard, admin-template
Material Kit React
React Dashboard made with Material UI’s components. Our pro template contains features like TypeScript version, authentication system with Firebase and Auth0 plus many other
Stars: ✭ 3,465 (+1051.16%)
Mutual labels:  admin-dashboard, admin-template
laravellte
Fully customizable and tests supported Laravel admin dashboard 2.0
Stars: ✭ 202 (-32.89%)
Mutual labels:  adminlte, admin-dashboard

vuejs-AdminLTE

[Admin LTE] (https://almsaeedstudio.com/preview) Starter for [Vue JS] (http://vuejs.org/)

Installation

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# run unit tests
npm run unit

# run e2e tests
npm run e2e

# run all tests
npm test

For detailed explanation on how things work, checkout the guide and docs for vue-loader.

Usage

Create Page

  • Create file in components folder

    # user.vue
    <template>
      <h3>User Lists</h3>
    </template>
    
    <style>
      // style here
    </style>
    
    <script>
      // script here
    </script>
    
  • Register route component in src/app.js

    router.map({
      '/user': {
        component: require('./components/user.vue')
      }
    });
    
    

Add Menu

Open config/menus.js, and modify json data.

{
  name: 'Dashboard',
  link: '/',
  icon: 'fa-home',
  child: [{
    name: 'Child Dashboard',
    link: '/child',
    icon: 'fa-circle-o',
    }
  ] 
  // child is optional
}
Buy Me A Coffee
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].