You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
593 B
36 lines
593 B
<template>
|
|
<div>
|
|
<h1>Basic</h1>
|
|
<Basic />
|
|
<h1>CheckAll</h1>
|
|
<CheckAll />
|
|
<h1>Controller</h1>
|
|
<Controller />
|
|
<h1>Disabled</h1>
|
|
<Disabled />
|
|
<h1>Group</h1>
|
|
<Group />
|
|
<h1>Layout</h1>
|
|
<Layout />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Basic from './basic'
|
|
import CheckAll from './check-all'
|
|
import Controller from './controller'
|
|
import Disabled from './disabled'
|
|
|
|
import Group from './group'
|
|
import Layout from './layout'
|
|
export default {
|
|
components: {
|
|
Basic,
|
|
CheckAll,
|
|
Disabled,
|
|
Controller,
|
|
Group,
|
|
Layout,
|
|
},
|
|
}
|
|
</script>
|