0.0.24-alpha.0 • Published 4 years ago

@xarples/wolfi-vue v0.0.24-alpha.0

Weekly downloads
-
License
-
Repository
-
Last release
4 years ago

Wolfi

Modern and Beautiful UI Library.

Build Status

Quick start

Get started with Wolfi, a modern and Beautiful UI library made with Vue.js for building feature rich and blazing fast applications.

NPM or Yarn (recommended)

After creating a project with vue-cli or custom-made (usually Webpack).

Installation

npm install @xarples/wolfi-vue --save
// or
yarn add @xarples/wolfi-vue

Usage

import Vue from "vue"
import Wolfi from "@xarples/wolfi-vue"
import "@xarples/wolfi/dist/wolfi.min.css"

Vue.use(Wolfi)

Standalone

Using CDN or downloading files to serve local.

Installation

Just download or use these as CDN:

Script: https://unpkg.com/@xarples/wolfi-vue/dist/wolfi.min.js.

Style: https://unpkg.com/@xarples/wolfi-vue/dist/wolfi.min.css.

Usage

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link
      rel="stylesheet"
      href="https://unpkg.com/@xarples/wolfi-vue/dist/wolfi.min.css"
    />
  </head>

  <body>
    <div id="app">
      <!-- Wolfi components goes here -->
    </div>

    <script src="https://unpkg.com/vue"></script>
    <!-- Full bundle -->
    <script src="https://unpkg.com/@xarples/wolfi-vue/dist/wolfi.min.js"></script>

    <script>
      new Vue({
        el: "#app"
      })
    </script>
  </body>
</html>

Using Nuxt.js

Using a Nuxt.js module to keep things easier

Installation

npm install @xarples/wolfi-nuxt --save
// or
yarn add @xarples/wolfi-nuxt

Usage

Add @xarples/wolfi-nuxt to modules section of nuxt.config.js:

{
  modules: [
    // Simple usage
    "@xarples/wolfi-nuxt",

    // Or you can customize
    [
      "@xarples/wolfi-nuxt",
      {
        theme: {
          colors: { primary: "black" }
        }
      }
    ]
  ]
}

Compatibility

  • Supports Vue.js 2.x
  • Supports SSR
  • Supports Nuxt.js
  • Supports TypeScript
  • Supports Electron
  • Most components and features support IE9 and above browsers, some components and features do not support IE
0.0.24-alpha.0

4 years ago

0.0.23-alpha.0

4 years ago

0.0.21-alpha.0

4 years ago

0.0.19-alpha.0

4 years ago

0.0.12-alpha.0

4 years ago

0.0.22-alpha.0

4 years ago

0.0.17-alpha.0

4 years ago

0.0.18-alpha.0

4 years ago

0.0.10-alpha.0

4 years ago

0.0.15-alpha.0

4 years ago

0.0.16-alpha.0

4 years ago

0.0.11-alpha.0

4 years ago

0.0.14-alpha.0

4 years ago

0.0.20-alpha.0

4 years ago

0.0.13-alpha.0

4 years ago

0.0.9-alpha.0

4 years ago

0.0.8-alpha.0

4 years ago

0.0.6-alpha.0

4 years ago

0.0.7-alpha.0

4 years ago

0.0.5-alpha.0

4 years ago

0.0.4-alpha.0

4 years ago