ag-element-ui/src/App.vue

33 lines
522 B
Vue
Raw Normal View History

2024-06-28 15:13:20 +08:00
<template>
<div id="app">
<mButton>
<template v-slot:default="{ datas }">
{{ datas.b }}
</template>
</mButton>
<!-- <mButton1/> -->
</div>
</template>
<script>
// import myComponents from '../packages'
export default {
name: 'App',
components: {
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>