Socket
Book a DemoInstallSign in
Socket

vuetify-vuejs-loader

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuetify-vuejs-loader

Vuetify VueJS Loader Component

0.0.14
latest
Source
npmnpm
Version published
Weekly downloads
128
23.08%
Maintainers
1
Weekly downloads
 
Created
Source

vuetify-vuejs-loader

npm version

Vuetify VueJS Loader Component.

Installation

npm install vuetify-vuejs-loader --save

Usage

<template>
  <VuetifyLoader />
</template>

<script>
import Vue from "vue";
import vuetifyLoader from "vuetify-vuejs-loader";
Vue.use(vuetifyLoader);

export default {
  name: "example"
};
</script>

Usage with Vuetify-Loader (aka a-la-carte)

Recently the Vuetify plugin for vue-cli enable A-la-carte by default.

Importing via the .vue directly

<template>
  <VuetifyLoader />
</template>

<script>
import Vue from "vue";
import vuetifyLoader from "vuetify-vuejs-loader/src";
Vue.use(vuetifyLoader);

export default {
  name: "example"
};
</script>

Importing every components

Since Vuetify-Loader didn't « scan » correctly usage in external dependencies you have to manually import components needed…

import Vue from "vue";
import vuetifyLoader from "vuetify-vuejs-loader";
import Vuetify, {
  VCard,
  VCardText,
  VDialog,
  VProgressCircular,
  VBtn
} from "vuetify/lib";

Vue.use(Vuetify, {
  components: { VProgressCircular, VDialog, VCard, VCardText, VBtn }
});
Vue.use(vuetifyLoader);

Keywords

vue

FAQs

Package last updated on 16 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.