store-management-app/src/pages/index/index.vue

25 lines
305 B
Vue
Raw Normal View History

2024-08-26 03:15:07 +00:00
<template>
2024-09-09 07:35:17 +00:00
<div class="content"></div>
2024-08-26 03:15:07 +00:00
</template>
<script>
export default {
data() {
return {
2024-09-09 07:35:17 +00:00
title: "Hello",
};
2024-08-26 03:15:07 +00:00
},
onLoad() {},
methods: {},
2024-09-09 07:35:17 +00:00
};
2024-08-26 03:15:07 +00:00
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>