Skip to content

Latest commit

 

History

History

ui

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Component QRibbon

npm npm

QRibbon

Add Ribbons to your Quasar Apps

Usage

Quasar CLI project

Install the App Extension.

OR:

Create and register a boot file:

import Vue from 'vue'
import { QRibbon } from '@quasar/quasar-ui-qribbon'
import '@quasar/quasar-ui-qribbon/dist/index.css'

Vue.use(Plugin)

OR:

<style src="@quasar/quasar-ui-qribbon/dist/index.css"></style>

<script>
import { QRibbon } from '@quasar/quasar-ui-qribbon'

export default {
  components: {
    QRibbon
  }
}
</script>

Vue CLI project

import Vue from 'vue'
import { QRibbon } from '@quasar/quasar-ui-qribbon'
import '@quasar/quasar-ui-qribbon/dist/index.css'

Vue.use(Plugin)

OR:

<style src="@quasar/quasar-ui-qribbon/dist/index.css"></style>

<script>
import { QRibbon } from '@quasar/quasar-ui-qribbon'

export default {
  components: {
    QRibbon
  }
}
</script>

UMD variant

Exports window.QRibbon.

Add the following tag(s) after the Quasar ones:

<head>
  <!-- AFTER the Quasar stylesheet tags: -->
  <link href="https://cdn.jsdelivr.net/npm/@quasar/quasar-ui-qribbon/dist/index.min.css" rel="stylesheet" type="text/css">
</head>
<body>
  <!-- at end of body, AFTER Quasar script(s): -->
  <script src="https://cdn.jsdelivr.net/npm/@quasar/quasar-ui-qribbon/dist/index.umd.min.js"></script>
</body>

If you need the RTL variant of the CSS, then go for the following (instead of the above stylesheet link):

<link href="https://cdn.jsdelivr.net/npm/@quasar/quasar-ui-qribbon/dist/index.rtl.min.css" rel="stylesheet" type="text/css">

Setup

$ yarn

Developing

# start dev in SPA mode
$ yarn dev

# start dev in UMD mode
$ yarn dev:umd

# start dev in SSR mode
$ yarn dev:ssr

# start dev in Cordova iOS mode
$ yarn dev:ios

# start dev in Cordova Android mode
$ yarn dev:android

# start dev in Electron mode
$ yarn dev:electron

Building package

$ yarn build

Donate

If you appreciate the work that went into this, please consider donating to Quasar or Allan.

License

MIT (c) Allan Gaunt allan@quasar.dev