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.
20 lines
273 B
20 lines
273 B
7 years ago
|
<template>
|
||
|
<div>
|
||
|
<h1>Basic</h1>
|
||
|
<Basic />
|
||
|
<h1>Disabled</h1>
|
||
|
<Disabled />
|
||
|
<Layout />
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import Basic from './basic'
|
||
|
import Disabled from './disabled'
|
||
|
export default {
|
||
|
components: {
|
||
|
Basic,
|
||
|
Disabled,
|
||
|
},
|
||
|
}
|
||
|
</script>
|