Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-aui

Package Overview
Dependencies
Maintainers
5
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-aui

Vue.js 2 wrapper over Atlassian User Interface (AUI)

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

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

Keywords

FAQs

Package last updated on 21 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc