about.vue 1.45 KB
<script setup lang="ts">
import { reactive } from "vue";
// import {tengxiTestStore} from '@/pinia/index'
import * as all from '@/pinia/index'
console.log(all)
// const store = tengxiTestStore()
// console.log(store)
const data = reactive([
  {
    date: "2016-05-02",
    name: "王小虎1",
    address: "上海市普陀区金沙江路 1518 弄",
  },
  {
    date: "2016-05-04",
    name: "王小虎",
    address: "上海市普陀区金沙江路 1517 弄",
  },
  {
    date: "2016-05-01",
    name: "王小虎",
    address: "上海市普陀区金沙江路 1519 弄",
  },
  {
    date: "2016-05-03",
    name: "王小虎",
    address: "上海市普陀区金沙江路 1516 弄",
  },
]);
// const addAge = () => {
//   console.log('add one age')
//   console.log(store.age)
//   store.grown()
//   console.log(store.age)
// }
// const initPinia = () => {
//   store.init()
// }
</script>

<template>
  <p class="tengxi">Tengxi About Page</p>
  <el-button type="primary">成功</el-button>
  <p>测试pinia数据:{{all.family.dataStore().data1}}</p>
  <!-- <el-button @click="addAge">长一岁</el-button>
  <el-button @click="initPinia">初始化pinia</el-button> -->

  <el-table :data="data" style="width: 100%">
    <el-table-column prop="date" label="日期" width="180"> </el-table-column>
    <el-table-column prop="name" label="姓名" width="180"> </el-table-column>
    <el-table-column prop="address" label="地址"> </el-table-column>
  </el-table>
</template>