| 123456789101112131415161718192021222324 |
- <template>
- <div>
- <h1>组件名</h1>
- <p>组件说明文字</p>
- <!-- DEMO区域 -->
- <!-- <nut-switch :height="30" :width="60" @switch-on="switchOn" @switch-off="switchOff"></nut-switch> -->
- <!-- DEMO代码 -->
- <pre><code v-highlight>this.$dialog(options);</code></pre>
- </div>
- </template>
- <script>
- export default {
- data(){
- return{
- }
- },
- methods:{
- }
- }
- </script>
- <style lang="scss">
- </style>
|