Provides a Vue.js/Vuetify component to quickly switch between apps provided by an appswitcher-server instance.
npm install @muenchen/appswitcher-vue
Starting with release 2.x appswitcher-vue
requires Vue.js 3.x and Vuetify 3.x as peer dependencies, to be exact:
Required Peer Dependencies:
"@mdi/font": "> 5",
"vue": "^3.2.0",
"vuetify": "^^3.0.0"
If you are using Vue.js 2.X and Vuetify 2.X, you still can use release 1.0.0:
npm install @muenchen/appswitcher-vue@1.0.0
import { AppSwitcher } from "@muenchen/appswitcher-vue";
export default {
name: "MyApp",
components: {
AppSwitcher
}
});
<template>
<v-app id="app">
<v-app-bar id="app-bar" app clipped-left dark color="primary">
<!-- [....] -->
<v-spacer />
<app-switcher base-url="https://my-appswitcher-server-instance.example.com" :tags="['global', 'finance']"/>
</v-app>
</template>
# Do dev stuff
npm run serve
# Run build process
npm run build
# Run demo app
npm run dev
This project uses semantic-release!
Commit message | Release type |
---|---|
fix(pencil): stop graphite breaking when too much pressure applied |
Patch Release |
feat(pencil): add 'graphiteWidth' option |
|
perf(pencil): remove graphiteWidth option BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite width of 10mm is always used for performance reasons. |
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please open an issue with the tag "enhancement", fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Open an issue with the tag "enhancement"
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE file for more information.
it@M - opensource@muenchen.de