All Projects β†’ JorgenVatle β†’ Vue Sweetalert Icons

JorgenVatle / Vue Sweetalert Icons

Licence: isc
🎨 Clean animated status icons for your Vue project. Based on SweetAlert's status icons

Projects that are alternatives of or similar to Vue Sweetalert Icons

Lichter.io
My own website and CV
Stars: ✭ 105 (+90.91%)
Mutual labels:  hacktoberfest, nuxt
Vue Storefront
The open-source frontend for any eCommerce. Built with a PWA and headless approach, using a modern JS stack. We have custom integrations with Magento, commercetools, Shopware and Shopify and total coverage is just a matter of time. The API approach also allows you to merge VSF with any third-party tool like CMS, payment gateways or analytics. Ne…
Stars: ✭ 9,111 (+16465.45%)
Mutual labels:  hacktoberfest, nuxt
Content
Nuxt Content lets you write in a content/ directory and fetch your Markdown, JSON, YAML, XML and CSV files through a MongoDB like API, acting as a Git-based Headless CMS
Stars: ✭ 1,311 (+2283.64%)
Mutual labels:  hacktoberfest, nuxt
Http
Universal HTTP Module for Nuxt.js
Stars: ✭ 146 (+165.45%)
Mutual labels:  hacktoberfest, nuxt
Typed Vuex
🏦 A typed store accessor for vanilla Vuex.
Stars: ✭ 193 (+250.91%)
Mutual labels:  hacktoberfest, nuxt
Axios Module
Secure and easy axios integration with Nuxt.js
Stars: ✭ 998 (+1714.55%)
Mutual labels:  hacktoberfest, nuxt
Composition Api
Composition API hooks for Nuxt.
Stars: ✭ 441 (+701.82%)
Mutual labels:  hacktoberfest, nuxt
Pwa Module
Zero config PWA solution for Nuxt.js
Stars: ✭ 1,033 (+1778.18%)
Mutual labels:  hacktoberfest, nuxt
Druid Exporter
A Golang based exporter captures druid API related metrics and receives druid-emitting HTTP JSON data.
Stars: ✭ 54 (-1.82%)
Mutual labels:  hacktoberfest
Aws Iot Device Sdk Cpp V2
Next generation AWS IoT Client SDK for C++ using the AWS Common Runtime
Stars: ✭ 53 (-3.64%)
Mutual labels:  hacktoberfest
Fosoauthserverbundle
A server side OAuth2 Bundle for Symfony
Stars: ✭ 1,068 (+1841.82%)
Mutual labels:  hacktoberfest
Sanity Typed Queries
A typed, zero-dependency schema generator and query builder for Sanity.
Stars: ✭ 54 (-1.82%)
Mutual labels:  hacktoberfest
Laravel Vuejs.com
Laravel and VueJs Blog, using Laravel nova, GraphQL, NuxtJs, Apollo and ...more
Stars: ✭ 54 (-1.82%)
Mutual labels:  nuxt
Vue Social Sharing
A renderless Vue.js component for sharing links to social networks, compatible with SSR
Stars: ✭ 1,071 (+1847.27%)
Mutual labels:  hacktoberfest
Okadash
Simple and Highly Customizable Dashboard tool made with Electron
Stars: ✭ 55 (+0%)
Mutual labels:  hacktoberfest
Ripple Without Js
Create Material Design ripple effect in your HTML without using a single line of JS.
Stars: ✭ 53 (-3.64%)
Mutual labels:  hacktoberfest
Dbbench
πŸ‹οΈ dbbench is a simple database benchmarking tool which supports several databases and own scripts
Stars: ✭ 52 (-5.45%)
Mutual labels:  hacktoberfest
Settingsguide
More extensive explanations of Cura slicing settings.
Stars: ✭ 55 (+0%)
Mutual labels:  hacktoberfest
Maven Site
Apache Maven site
Stars: ✭ 54 (-1.82%)
Mutual labels:  hacktoberfest
Awesome Emoji Picker
Add-on/WebExtension that provides a modern emoji picker that you can use to find and copy/insert emoji into the active web page.
Stars: ✭ 54 (-1.82%)
Mutual labels:  hacktoberfest

Animated SweetAlert Icons for Vue

A clean and simple Vue wrapper for SweetAlert's fantastic status icons. This wrapper is intended for users who are interested in just the icons. For the standard SweetAlert modal with all of its bells and whistles, you should probably use Vue-SweetAlert 2

Example usage

Install

npm install --save vue-sweetalert-icons

Import

import SweetAlertIcons from 'vue-sweetalert-icons';

Vue.use(SweetAlertIcons);

If you're using Nuxt, you might need additional steps (read more)

Use

<template>
    <!-- Icon can be one of: "success", "warning", "info", "error" and "loading" -->
    <sweetalert-icon icon="success" />

    <!-- Optionally, you can customize colors for all icons! 🎨 -->
    <sweetalert-icon icon="warning" color="#6a737d"/>
</template>

Alternative Usage

If you'd rather not use the package globally, you can import SweetalertIcon for use with a single vue component/instance instead:

<template>
    <sweetalert-icon icon="success"></sweetalert-icon>
</template>

<script>
    import SweetalertIcon from 'vue-sweetalert-icons';

    export default {
        components: { SweetalertIcon },
    }
</script>

Usage with Nuxt

Due to an issue with the way styles are injected into Nuxt, please wrap <sweetalert-icon /> around <no-ssr> tags.

<no-ssr>
    <sweetalert-icon icon="info" />
</no-ssr>

Credits

License

ISC

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].