0.1.27 • Published 2 years ago
@spartez/vue-atlaskit-next v0.1.27
@spartez/vue-atlaskit
Unofficial Vue UI library, built according to the Atlassian Design Guidelines.
Installation
npm install @spartez/vue-atlaskit
ES6
//
// Register a component manually for optimal tree shaking
//
import { Spinner } from '@spartez/vue-atlaskit';
export default {
components: {
Spinner
},
};
Browser
<script src="path/to/vue/vue.min.js"></script>
<script src="https://unpkg.com/@spartez/vue-atlaskit/dist/index.min.js"></script>
<!-- Components are registered globally -->
After that, you can use it in your templates:
<script>
new Vue({
el: '#app',
template: `<Button>{{hello}}</Button>`,
data: { hello: 'Click Me!' }
})
</script>
For including styles you can either place the below styles in your index.html
<link href="https://unpkg.com/@spartez/vue-atlaskit/dist/bundle.css" rel="stylesheet">
Or you can import it to your webpack entry point file. This is usually your main.js
file.
import '@spartez/vue-atlaskit/dist/bundle.css';
Contributing
See CONTRIBUTING.md.
0.1.27
2 years ago
0.1.26
2 years ago
0.1.20
4 years ago
0.1.21
4 years ago
0.1.22
4 years ago
0.1.23
4 years ago
0.1.24
4 years ago
0.1.25
4 years ago
0.1.16
4 years ago
0.1.17
4 years ago
0.1.18
4 years ago
0.1.19
4 years ago
0.1.15
4 years ago
0.1.14
4 years ago
0.1.13
4 years ago
0.1.12
4 years ago
0.1.11
4 years ago
0.1.10
4 years ago
0.1.9
4 years ago
0.1.8
4 years ago
0.1.7
4 years ago
0.1.6
4 years ago
0.1.2
4 years ago
0.1.4
4 years ago
0.1.3
4 years ago
0.1.5
4 years ago
0.1.1
4 years ago
0.1.0
4 years ago