You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
869 B
Vue

<template>
<view class="content">
<u-row>
<u-col :span="6">
<u-button @click="toPage('/pages/demo/index')"></u-button>
</u-col>
<u-col :span="6">
<u-button @click="toPage(page.raw.appointment.index)"></u-button>
</u-col>
<u-col :span="6">
<u-button @click="toPage(page.raw.receiving.index)"></u-button>
</u-col>
</u-row>
</view>
</template>
<script lang="ts">
import { Component } from 'vue-property-decorator';
import { BasePage } from '@/components/base/page';
@Component
export default class Home extends BasePage {
onLoad(): void {
console.log('Page onLoad()...');
}
}
</script>
<style lang="scss" scoped>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 100rpx;
}
</style>