mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-18 05:18:11 +00:00
26 lines
305 B
Vue
26 lines
305 B
Vue
<template>
|
|
<div>
|
|
App Store
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "store",
|
|
props: {
|
|
data: {
|
|
type: Object,
|
|
default() {
|
|
return {};
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|