1.0.3 • Published 4 years ago

@rezcoalis/ap v1.0.3

Weekly downloads
2
License
ISC
Repository
-
Last release
4 years ago

Install package

npm install path/to/alis-app-component
<template>
    <alis-app :tabs="tabs" :appIconUrl="appIconUrl">
        <div>
            Embed your App here... 
            ANY HTML CODE OR COMPONENT IS VALID.
        </div>
    </alis-app>
</template>

<script>
import 'tippy.js/dist/tippy.css';
import 'material-components-web/dist/material-components-web.css';

import AlisApp from 'alis-app';

export default {
  components: {
    AlisApp
  },
  data() {
    return {
      appIconUrl: require('@/assets/logo.gif'),
      tabs: [
        {
            label: 'App 1',
            icon: 'build',
            info: 'Some information on this menu item, very important. Worth mentioning',
            order: 0,
            active: true
        },
        {
            label: 'App 3',
            icon: 'face',
            info: 'Some information on this menu item, very important. Worth mentioning',
            order: 2
        },
        {
            label: 'App 2',
            icon: 'dashboard',
            info: 'Some information on this menu item, very important. Worth mentioning',
            order: 1
        }
      ]
    }
  }
}
</script>

Development

npm install

npm run serve

Deployment

npm run build

npm publish
1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago