mirror of
https://github.com/easychen/pushdeer.git
synced 2025-04-30 16:29:51 +08:00
32 lines
435 B
XML
32 lines
435 B
XML
<template>
|
|
<div class="wrapper">
|
|
<text class="title">{{ title }}</text>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: {
|
|
title: "Hello World. Quickapp Component."
|
|
},
|
|
|
|
props: [],
|
|
|
|
onInit() {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
|
|
@import './../../assets/styles/style.less';
|
|
|
|
.wrapper {
|
|
.flex-box-mixins(column, flex-start, center);
|
|
width: 100%;
|
|
}
|
|
.title {
|
|
text-align: center;
|
|
color: #212121;
|
|
}
|
|
</style>
|