Files
mes-ui-d2/src/pages/demo/plugins/index/index.vue

20 lines
338 B
Vue
Raw Normal View History

<template>
<d2-container :filename="filename" type="card">
<d2-module-index :banner="banner"/>
</d2-container>
</template>
<script>
export default {
data () {
return {
filename: __filename,
banner: {
title: 'PLUGIN',
subTitle: 'D2Admin 集成了许多实用插件'
}
}
}
}
</script>