1.0.0 • Published 2 years ago

tailvue v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

🚀 Features

  • 🌔 All components and classes include dark-mode support
  • 🔌 Programmatic toasts
$toast.show('this is a test');
$toast.show({
  type: 'danger',
  message: 'single action toast',
  timeout: 6,
  primary: {
    label: 'UNDO',
    action: () => $toast.show('you clicked UNDO')
  }
})
  • 🔌 Programmatic modals
$modal.show({
  type: 'danger',
  title: 'This is the title property',
  body: 'This is the body property.',
  primary: {
    label: 'Primary Action',
    theme: 'red',
    action: () => $toast.show('Primary Button clicked'),
  },
  secondary: {
    label: 'Secondary Action',
    theme: 'white',
    action: () => $toast.show('Clicked Secondary'),
  },
})
  • 🎪 Interactive playground! - just run yarn; yarn dev

  • ✨ Tons of other components that will be documented shortly!

Installation

NuxtJS v3

yarn add --dev @tailvue/nuxt
  • Add this to your nuxt.config.ts
modules: [
    // ...
    '@tailvue/nuxt',
],

Note If you are using Nuxt 2 you may need to put this in of the buildModules array

Vue3

yarn add tailvue
import { useToast, useModal } from 'tailvue'
const $toast = useToast()
const $modal = useModal()

Icons

yarn add --dev @iconify/vue

UnoCSS

  • Install UnoCSS
  • Add the following to your uno.config.ts
export default defineConfig({
  extract: {
    include: [
      ...
      "node_modules/tailvue/dist/tailvue.es.js",
    ],
  },

tailwindcss

  • Install tailwindcss
  • Add the following to your tailwind.config.js
module.exports = {
  content: [
    ...
      "node_modules/tailvue/dist/tailvue.es.js",
  ],
}
1.0.0

2 years ago

0.1.65

2 years ago

0.1.66

2 years ago

0.1.67

2 years ago

0.1.68

2 years ago

0.1.63

3 years ago

0.1.64

3 years ago

0.1.62

3 years ago

0.1.61

3 years ago

0.1.59

3 years ago

0.1.60

3 years ago

0.1.52

4 years ago

0.1.53

4 years ago

0.1.54

4 years ago

0.1.55

3 years ago

0.1.56

3 years ago

0.1.57

3 years ago

0.1.58

3 years ago

0.1.50

4 years ago

0.1.51

4 years ago

0.1.49

4 years ago

0.1.47

4 years ago

0.1.48

4 years ago

0.1.30

4 years ago

0.1.31

4 years ago

0.1.32

4 years ago

0.1.10

4 years ago

0.1.33

4 years ago

0.1.11

4 years ago

0.1.34

4 years ago

0.1.12

4 years ago

0.1.35

4 years ago

0.1.13

4 years ago

0.1.36

4 years ago

0.1.14

4 years ago

0.1.37

4 years ago

0.1.15

4 years ago

0.1.27

4 years ago

0.1.28

4 years ago

0.1.29

4 years ago

0.1.41

4 years ago

0.1.42

4 years ago

0.1.20

4 years ago

0.1.43

4 years ago

0.1.21

4 years ago

0.1.44

4 years ago

0.1.22

4 years ago

0.1.45

4 years ago

0.1.23

4 years ago

0.1.46

4 years ago

0.1.24

4 years ago

0.1.25

4 years ago

0.1.26

4 years ago

0.1.40

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.38

4 years ago

0.1.16

4 years ago

0.1.8

4 years ago

0.1.39

4 years ago

0.1.17

4 years ago

0.1.18

4 years ago

0.1.19

4 years ago

0.1.9

4 years ago

0.1.3

4 years ago

0.1.0

5 years ago