You need to sign in or sign up before continuing.
Notification.md 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179

## Notification

### base usage

```san Notification
   <template>
    <div>
        <san-button
            variants="raised info"
            on-click="handleClick01">
            auto close
        </san-button>
        <san-button
            variants="raised info"
            on-click="handleClick02">
            no auto close
        </san-button>
    </div>
</template>

<script>
import Notification from '../src/Notification';
import '../src/Notification/Notification.styl';
import Button from '../src/Button';
import '../src/Button/Button.styl';

export default {
    components: {
        'san-button': Button
    },
    // auto close
    handleClick01() {
        Notification({
            message: 'welcome',
            title: 'success'
        })
    },
    // no auto close
    handleClick02() {
        Notification({
            message: 'welcome',
            title: 'success',
            duration: 0
        })
    }
}
</script>
```

### with icon

```san Notification
<template>
    <div>
        <san-button
            variants="raised info"
            on-click="handleClick01">
            success
        </san-button>
        <san-button
            variants="raised info"
            on-click="handleClick02">
            warning
        </san-button>
        <san-button
            variants="raised info"
            on-click="handleClick03">
            info
        </san-button>
        <san-button
            variants="raised info"
            on-click="handleClick04">
            error
        </san-button>
        <san-button
            variants="raised info"
            on-click="handleClick05">
            simplify
        </san-button>
    </div>
</template>

<script>
import Notification from '../src/Notification';
import '../src/Notification/Notification.styl';
import Button from '../src/Button';
import '../src/Button/Button.styl';

export default {
    components: {
        'san-button': Button
    },
    handleClick01() {
        Notification({
            message: 'welcome',
            title: 'success',
            type: 'success'
        })
    },
    handleClick02() {
        Notification({
            message: 'warning',
            title: 'warning',
            type: 'warning'
        })
    },
    handleClick03() {
        Notification({
            message: 'info',
            title: 'info',
            type: 'info'
        })
    },
    handleClick04() {
        Notification({
            message: '不可以攻击己方水晶',
            title: '错误',
            type: 'error'
        })
    },
     handleClick05() {
         Notification.success('simplify')
     }
}
</script>
```
### width offset

```san Notification
<template>
    <div>
        <san-button
            variants="raised info"
            on-click="handleClick01">
            width offset
        </san-button>
    </div>
</template>

<script>
import Notification from '../src/Notification';
import '../src/Notification/Notification.styl';
import Button from '../src/Button';
import '../src/Button/Button.styl';

export default {
    components: {
        'san-button': Button
    },
    handleClick01() {
        Notification({
            message: 'offset 100px',
            title: 'success',
            offset:100
        })
    }
}
</script>
```


## API

### Props

| name | type | fefault | desc |
| --- | --- | --- | --- |
| title | String |  | title |
| message | String |  | content |
| customClass |String| | custom class |
| offset | Number |  | offset to the top |
| onClick | Function |  | on-click callback |
| onClose | Function |  | on-close callback |
| duration | Number | 3000 | duration |
| type | String | | include success,error,warning,info, others not use |