Skip to content

Release 1.0.0

Latest
Compare
Choose a tag to compare
@palmer-rm palmer-rm released this 26 Jun 15:23

No longer bundling Common JS module


Simple, dark, and custom themes are now supported

Styles for individual themes are exported separately to the base styles.

Before:

import Snotify from 'vue3-snotify';
import 'vue3-snotify/style'; // Defaulted to material theme

Now:

import Snotify from 'vue3-snotify';
import 'vue3-snotify/style';

import 'vue3-snotify/theme/material';
// import 'vue3-snotify/theme/simple';
// import 'vue3-snotify/theme/dark';
// import '../someCustomTheme.css';