Flagpack contains 260+ flag icons to easily use within your code project. Flagpack is an open source project and available for JavaScript frameworks/libraries Angular, Vue and React.
Flagpack contains 260+ flag icons to easily use within your code project. Flagpack is an open source project and available for JavaScript frameworks/libraries Angular, Vue and React.
View documentation on flagpack.xyz
Flagpack for Vue is created using Vue v2.5.11. The Flagpack component has not been tested for compatibility with older version of Vue.
npm install vue-flagpack
import Vue from 'vue'
import Flag from 'vue-flagpack'
Vue.use(Flag, {
name: 'Flag'
})
In your template:
<template>
<vue-flagpack code="NL" />
</template>
import { Flag } from 'vue-flagpack'
Vue.component('flag-nl', {
components: {
Flag
},
template: `
<Flag code="NL" />
`
})
<script src="https://unpkg.com/[email protected]/dist/vue-flag-rollup.cjs.js"></script>
<script>
const instance = new Vue({
el: '#app',
components: {
'Flag': Flag.Flag
},
})
// or
instance.use(Flag)
</script>
Key | Value | Required | Default |
---|---|---|---|
name | String | false | vue-flagpack |
Key | Value | Required | Default | Format |
---|---|---|---|---|
code | String | false | 'NL' | See all codes |
size | String | false | 'L' | 'S', 'M' or 'L' |
className | String | false | - | - |
hasDropShadow | Boolean | false | false | - |
hasBorder | Boolean | false | true | - |
hasBorderRadius | Boolean | false | true | - |
gradient | String | false | '' | 'top-down', 'real-linear' or 'real-circular' |
# install dependencies
npm install
# build for prod
npm run build
# build with watcher for dev
npm run dev
To release a new version you'll need to make sure all changes commits are done and pushed. After that you'll need to decide which release type you want to use. The release types are; patch (0.0.1), major (0.1.0), or minor (1.0.0).
npm version <release_type>
This will update the version number in the package.json
, and will add a git tag automatically. Next you'll need to push the git tag to the remote.
git push --tags origin main
After that you'll need to publish to npm.
npm publish
When you're confident with the release, make sure the version tag is also released at GitHub.
You can find a changelog of Flagpack's releases on the Releases page on GitHub.
If you're interested in contributing to this project, great! Please see the contributing document.
Author: Yummygum
Demo: https://flagpack.xyz/
Source Code: https://github.com/Yummygum/vue-flagpack
In this article, we are going to list out the most popular websites using Vue JS as their frontend framework. Vue JS is one of those elite progressive JavaScript frameworks that has huge demand in the web development industry. Many popular websites are developed using Vue in their frontend development because of its imperative features.
Vue Native is a framework to build cross platform native mobile apps using JavaScript. It is a wrapper around the APIs of React Native. So, with Vue Native, you can do everything that you can do with React Native. With Vue Native, you get
In this article, you’ll learn how to build a Vue custom select component that can be easily be styled using your own CSS. In fact, it’s the same component that we use in production on Qvault, and you can see it in action on the playground.
There are plenty of libraries out there that will have you up and running with a good tooltip solution in minutes. However, if you are like me, you are sick and tired of giant dependency trees that have the distinct possibility of breaking at any time.
Vue-ShortKey - The ultimate shortcut plugin to improve the UX .Vue-ShortKey - plugin for VueJS 2.x accepts shortcuts globaly and in a single listener.