vue-typed-ui
v1.6.9
Published
UI components made with Semantic UI, VueTyped and friends
Downloads
9
Readme
VueTypedUI
Is sets of UI components made with Semantic UI, VueTyped and friends
Install
npm install vue-typed-ui --save-dev
Usage
import * as Vue from 'vue'
import * as VueTypedUI from 'VueTypedUI'
Vue.use(VueTypedUI /* optional */ ,{
prefix: 'ui',
settings: { /* see options/settings section bellow */ }
})
Options
prefix
Components tag prefix. Default is 'ui'
settings
Some components may have some individual settings
Requirements
These requirements must be referenced in your main HTML file. For example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Awesome App</title>
<!-- requirement css-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.css" rel="stylesheet" type="text/css">
<link href="https://cdn.rawgit.com/mdehoog/Semantic-UI-Calendar/master/dist/calendar.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- main app here-->
<div id="app"></div>
<!-- requirement scripts-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.js"></script>
<script src="https://cdn.rawgit.com/mdehoog/Semantic-UI-Calendar/master/dist/calendar.min.js"></script>
</body>
</html>
Credits
License
MIT