mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-21 02:50:11 +08:00
docs[alert]: update alert docs (#493)
This commit is contained in:
parent
0132bf5790
commit
83aaf71684
@ -87,13 +87,17 @@ Customize the close button as texts or other symbols.
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
hello() {
|
||||
import { defineComponent } from 'vue'
|
||||
export default defineComponent({
|
||||
setup() {
|
||||
const hello = () => {
|
||||
alert('Hello World!');
|
||||
}
|
||||
return {
|
||||
hello
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
</script>
|
||||
```
|
||||
:::
|
||||
|
@ -88,13 +88,17 @@ Personalizar el botón de cerrar como texto u otros símbolos.
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
hello() {
|
||||
import { defineComponent } from 'vue'
|
||||
export default defineComponent({
|
||||
setup() {
|
||||
const hello = () => {
|
||||
alert('Hello World!');
|
||||
}
|
||||
return {
|
||||
hello
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
</script>
|
||||
```
|
||||
:::
|
||||
|
@ -87,13 +87,17 @@ Personnalisez le bouton de fermeture avec du texte ou des symboles.
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
hello() {
|
||||
import { defineComponent } from 'vue'
|
||||
export default defineComponent({
|
||||
setup() {
|
||||
const hello = () => {
|
||||
alert('Hello World!');
|
||||
}
|
||||
return {
|
||||
hello
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
</script>
|
||||
```
|
||||
:::
|
||||
|
@ -87,13 +87,17 @@ Alert 组件提供了两个不同的主题:`light`和`dark`。
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
hello() {
|
||||
import { defineComponent } from 'vue'
|
||||
export default defineComponent({
|
||||
setup() {
|
||||
const hello = () => {
|
||||
alert('Hello World!');
|
||||
}
|
||||
return {
|
||||
hello
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
</script>
|
||||
```
|
||||
:::
|
||||
|
Loading…
Reference in New Issue
Block a user