You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
350 B
21 lines
350 B
11 months ago
|
<template>
|
||
|
<uni-card title="首页"> </uni-card>
|
||
|
<button @click="getDataList()">获取数据</button>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
onLoad() {
|
||
|
console.log("主页");
|
||
|
},
|
||
|
methods: {
|
||
|
getDataList() {
|
||
|
const token = uni.getStorageSync("token");
|
||
|
console.log("token:", token);
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style></style>
|