Skip to content
This repository has been archived by the owner on May 15, 2021. It is now read-only.
/ Vouge Public archive

Vouge is Web UI Library, focus on the newest CSS trends, based on Vue.

License

Notifications You must be signed in to change notification settings

VougeJS/Vouge

Repository files navigation

Vouge Logo

Introduction

Vouge is Web UI Library, focus on the newest CSS trends, based on Vue.

// TODO

Browser Support

// TODO

Documentation

Documentation will be placed in /docs folder. Later, we will provide web-based documentation.

// TODO

Installation

You can download bundled Vouge from the releases page. We have provided a few
solutions which you can choose. Simple Vouge + Vue in one package, Vouge alone (you have to install Vue by yourself), and from command-line:

# npm
npm install vougejs/vouge
# yarn
yarn add vougejs/vouge

Usage

You have few options, you can use simple bundled version of Vouge.

Vouge + Vue bundled

For including vouge with vue, you have to put script at the bottom of the body section of your index.html

  <script src="path/to/vouge.vue.js"></script>

Bundled Vouge without Vue

For including vouge without vue, you have to put script right after vue.js script at the bottom of the body section of your index.html

  <script src="path/to/vue.js"></script>
  <script src="path/to/vouge.js"></script>

Vouge with usage of webpack

import Vue from 'vue'
import Vouge from 'vouge'

Vue.use(Vouge)

For including styles, you have to put styles into head section of your index.html

<link href="path/to/vouge.min.css" rel="stylesheet">

Community Support

Communicate and ask questions on the Vouge Discord Community.

Contributing

// TODO

Contributing Guide

JetBrains users

If you are using JetBrains products, you can (and should) after cloning of repository, set webpack configuration file, to build/webpack.config.dev.js in project settings. It will give you better auto-completion experience, and more specifically JetBrains will now resolve @, as a valid path to /src folder. Useful while playing in SandPit.

// TODO

License

Vouge is under MIT licensed.