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>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
import { defineComponent } from 'vue'
|
||||||
methods: {
|
export default defineComponent({
|
||||||
hello() {
|
setup() {
|
||||||
|
const hello = () => {
|
||||||
alert('Hello World!');
|
alert('Hello World!');
|
||||||
}
|
}
|
||||||
|
return {
|
||||||
|
hello
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
@ -88,13 +88,17 @@ Personalizar el botón de cerrar como texto u otros símbolos.
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
import { defineComponent } from 'vue'
|
||||||
methods: {
|
export default defineComponent({
|
||||||
hello() {
|
setup() {
|
||||||
|
const hello = () => {
|
||||||
alert('Hello World!');
|
alert('Hello World!');
|
||||||
}
|
}
|
||||||
|
return {
|
||||||
|
hello
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
@ -87,13 +87,17 @@ Personnalisez le bouton de fermeture avec du texte ou des symboles.
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
import { defineComponent } from 'vue'
|
||||||
methods: {
|
export default defineComponent({
|
||||||
hello() {
|
setup() {
|
||||||
|
const hello = () => {
|
||||||
alert('Hello World!');
|
alert('Hello World!');
|
||||||
}
|
}
|
||||||
|
return {
|
||||||
|
hello
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
@ -87,13 +87,17 @@ Alert 组件提供了两个不同的主题:`light`和`dark`。
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
import { defineComponent } from 'vue'
|
||||||
methods: {
|
export default defineComponent({
|
||||||
hello() {
|
setup() {
|
||||||
|
const hello = () => {
|
||||||
alert('Hello World!');
|
alert('Hello World!');
|
||||||
}
|
}
|
||||||
|
return {
|
||||||
|
hello
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
:::
|
:::
|
||||||
|
Loading…
Reference in New Issue
Block a user