# Installation

# Direct Download / CDN

https://unpkg.com/vue-adminlte/dist/vue-adminlte

Include vue-adminlte after Vue and it will install itself automatically:

<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-adminlte/dist/vue-adminlte.js"></script>

# NPM

$ npm install keenmate@vue-adminlte

# Yarn

$ yarn add keenmate@vue-adminlte

When used with a module system, you must explicitly install the vue-adminlte via Vue.use():

import Vue from 'vue'
import vue-adminlte from 'vue-adminlte'

Vue.use(vue-adminlte)

You don't need to do this when using global script tags.