29 lines
424 B
Markdown
29 lines
424 B
Markdown
<cn>
|
|
#### Warning
|
|
čĻåįąģåįįģæã
|
|
</cn>
|
|
|
|
<us>
|
|
#### Warning
|
|
The result of the warning.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-result status="warning" title="There are some problems with your operation.">
|
|
<template #extra>
|
|
<a-button key="console" type="primary">
|
|
Go Console
|
|
</a-button>
|
|
</template>
|
|
</a-result>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
```
|