1.0.0 • Published 3 years ago

tailvue v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 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

3 years ago

0.1.65

3 years ago

0.1.66

3 years ago

0.1.67

3 years ago

0.1.68

3 years ago

0.1.63

4 years ago

0.1.64

4 years ago

0.1.62

4 years ago

0.1.61

4 years ago

0.1.59

4 years ago

0.1.60

4 years ago

0.1.52

4 years ago

0.1.53

4 years ago

0.1.54

4 years ago

0.1.55

4 years ago

0.1.56

4 years ago

0.1.57

4 years ago

0.1.58

4 years ago

0.1.50

5 years ago

0.1.51

5 years ago

0.1.49

5 years ago

0.1.47

5 years ago

0.1.48

5 years ago

0.1.30

5 years ago

0.1.31

5 years ago

0.1.32

5 years ago

0.1.10

5 years ago

0.1.33

5 years ago

0.1.11

5 years ago

0.1.34

5 years ago

0.1.12

5 years ago

0.1.35

5 years ago

0.1.13

5 years ago

0.1.36

5 years ago

0.1.14

5 years ago

0.1.37

5 years ago

0.1.15

5 years ago

0.1.27

5 years ago

0.1.28

5 years ago

0.1.29

5 years ago

0.1.41

5 years ago

0.1.42

5 years ago

0.1.20

5 years ago

0.1.43

5 years ago

0.1.21

5 years ago

0.1.44

5 years ago

0.1.22

5 years ago

0.1.45

5 years ago

0.1.23

5 years ago

0.1.46

5 years ago

0.1.24

5 years ago

0.1.25

5 years ago

0.1.26

5 years ago

0.1.40

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.38

5 years ago

0.1.16

5 years ago

0.1.8

5 years ago

0.1.39

5 years ago

0.1.17

5 years ago

0.1.18

5 years ago

0.1.19

5 years ago

0.1.9

5 years ago

0.1.3

5 years ago

0.1.0

6 years ago