@lzhoucs/vuetify
TypeScript icon, indicating that this package has built-in type declarations

1.5.14-modified.5 • Public • Published

Introduction

This is a fork of vuetifyjs/vuetify, which contains some of the features that is not available in official vuetify yet, such as:

Motivation

Our current project has a requirement for this feature, which is the primary reason for working on these features.These added features probably won't be included in official vuetify release due to a full on-going rewrite: https://github.com/vuetifyjs/vuetify/pull/3833, see my original PR: https://github.com/vuetifyjs/vuetify/pull/4966 for details

Where to get the modified code/package

I am maintaining the following branches:

to keep up to date with 1.5.x versions of vuetify. It is published to npm: @lzhoucs/vuetify

The following branches are out dated and are no longer maintained:

How to use this package @lzhoucs/vuetify:

Approach 1, use webpack module alias

  • Modify vuetify package name in package.json. One way is to run the following commands:
npm uninstall vuetify
npm install @lzhoucs/vuetify --save
  • Add an alias entry to webpack config so vuetify imports name doesn't have to be touched in the code. If you are using vue cli v3, the syntax looks like the following:
  configureWebpack: {
    resolve: {
      alias: {
        vuetify: '@lzhoucs/vuetify'
      }
    }
  }

Approach 2(recommended), use package alias

This is how it looks like in command line

yarn add vuetify@npm:@lzhoucs/vuetify

This is the package.json added by yarn once the above command is ran:

"vuetify": "npm:@lzhoucs/vuetify@^1.5.14-modified.4"

Note

The hope is eventually vuetify can officially support these features so we don't have to use the modified package which takes efforts to keep up to date with the official one. In the meanwhile, use this package at your own risk. Not all features are well tested. You can open an issue if you find something not work.

License

MIT licensed.

Readme

Keywords

none

Package Sidebar

Install

npm i @lzhoucs/vuetify

Weekly Downloads

123

Version

1.5.14-modified.5

License

MIT

Unpacked Size

8.19 MB

Total Files

1878

Last publish

Collaborators

  • lzhoucs