mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 21:27:52 +08:00
15 lines
285 B
Vue
15 lines
285 B
Vue
<template>
|
|
<div style="margin: 20px;">
|
|
<!-- Write your component in component.vue -->
|
|
<play-component></play-component>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import PlayComponent from './component.vue';
|
|
export default {
|
|
components: {
|
|
PlayComponent
|
|
}
|
|
};
|
|
</script>
|