2019-08-13 11:10:45 +08:00
|
|
|
<template>
|
|
|
|
<div class="n-doc-section">
|
|
|
|
<div class="n-doc-section__header">
|
2019-08-13 15:27:11 +08:00
|
|
|
Basic Usage
|
2019-08-13 11:10:45 +08:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="n-doc-section__view"
|
|
|
|
style="flex-wrap: nowrap;"
|
|
|
|
>
|
|
|
|
<!--EXAMPLE_START-->
|
2019-08-13 15:27:11 +08:00
|
|
|
<n-popconfirm
|
|
|
|
positive-text="ok"
|
|
|
|
negative-text="not ok"
|
|
|
|
>
|
|
|
|
<template v-slot:activator>
|
|
|
|
<n-button>Quit</n-button>
|
|
|
|
</template>
|
|
|
|
Are you sure to quit this game?
|
|
|
|
</n-popconfirm>
|
2019-08-13 11:10:45 +08:00
|
|
|
<!--EXAMPLE_END-->
|
|
|
|
</div>
|
|
|
|
<n-doc-source-block>
|
|
|
|
<!--SOURCE-->
|
|
|
|
</n-doc-source-block>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|