All Projects → spartez → vue-aui

spartez / vue-aui

Licence: MIT License
Set of AUI (Atlassian User Interface) components in native Vue.js way.

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vue-aui

bitbucket-asciidoc-plugin
An add-on for Atlassian Bitbucket Server to render AsciiDoc files.
Stars: ✭ 20 (-53.49%)
Mutual labels:  atlassian
JirAgileR
User-friendly 🔹JIRA API wrapper. Track projects & issues from within R
Stars: ✭ 22 (-48.84%)
Mutual labels:  atlassian
connect-security-req-tester
A tool to check your Atlassian Connect app against Atlassian's security requirements.
Stars: ✭ 14 (-67.44%)
Mutual labels:  atlassian
jira-cli
🔥 [WIP] Feature-rich interactive Jira command line.
Stars: ✭ 809 (+1781.4%)
Mutual labels:  atlassian
data-center-helm-charts
Helm charts for Atlassian's Data Center products
Stars: ✭ 77 (+79.07%)
Mutual labels:  atlassian
laravel-jira-rest-client
A Laravel interface for your Atlassians Jira application
Stars: ✭ 37 (-13.95%)
Mutual labels:  atlassian
jira.js
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Stars: ✭ 156 (+262.79%)
Mutual labels:  atlassian
quickstart-atlassian-confluence
Team collaboration with high availability and scalability on the AWS Cloud
Stars: ✭ 39 (-9.3%)
Mutual labels:  atlassian
migrate bitbucket server to bitbucket cloud
Migrate Atlassian Bitbucket Server to Bitbucket Cloud
Stars: ✭ 13 (-69.77%)
Mutual labels:  atlassian
atlassian-connect-core
[Laravel 5.5+] The easiest way to create an add-on for the JIRA and Confluence
Stars: ✭ 42 (-2.33%)
Mutual labels:  atlassian
quickstart-atlassian-jira
Jira Software Data Center and Jira Service Desk Data Center with high availability and performance
Stars: ✭ 61 (+41.86%)
Mutual labels:  atlassian
vira
Create and update your Jira issues while inside Vim!
Stars: ✭ 76 (+76.74%)
Mutual labels:  atlassian
Confluence-and-Jira
Docker部署并破解Jira、Confluence及相关插件;若图片加载不出来可以访问我的博客原文查看
Stars: ✭ 60 (+39.53%)
Mutual labels:  atlassian
prepare-commit-msg
Automatically prefix commit messages with the current branch issue number
Stars: ✭ 28 (-34.88%)
Mutual labels:  atlassian

vue-aui

Vue.js wrapper for Atlassian User Interface (AUI)

npm version

This library provides a way to use Atlassian User Interface (AUI) that is native to Vue.js. It's created to speed-up development of Jira add-ons, but can also be used with other Atlassian products like Confluence, Bamboo, Bitbucket etc. that use AUI.

If you develop Jira add-ons please also take a look at vue-aui-jira-extras that provides Jira specific additions, some of them built on top this library.

Demo and docs

https://spartez.github.io/vue-aui/

Installation

Requirements
  • Vue ^2.5.2
  • npm ^5
  • AUI ^6.0 - you need to attach this yourself to the page or require via npm
Using npm
npm install vue-aui --save

and finally install the Vue plugin using

Vue.use(VueAui)

This will register all the components.

Alternatively, you can import and use a single component:

<template>
  <va-button>Click me</va-button>
</template>

<script>
import { VaButton } from 'vue-aui'

export default {
  components: { VaButton }
}
</script>
Or directly onto page
<script src="path/to/dist/vue-aui.js"></script>

Use VueAui.default to install the plugin into Vue.

Vue.use(VueAui.default);

This will register all the components.

CodePen demo starter:

https://codepen.io/dskrodzki/pen/LeGBme

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].