1 Star 0 Fork 0

animalcoder/Vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Test.vue 934 Bytes
一键复制 编辑 原始数据 按行查看 历史
animalcoder 提交于 2020-03-23 09:59 +08:00 . Vue6
<template>
<div>
<h1>{{title}}</h1>
<div >
<el-row type="flex" justify="center">
<el-col :span="15" >
<el-card class="box-card" >
<div style="min-height:500px">
<p style="text-align:left">content:{{content}}</p>
</div>
</el-card>
</el-col>
</el-row>
</div>
<p>id:{{id}}</p>
<!-- <button @click="getFuck()">123</button> -->
</div>
</template>
<style scoped>
</style>
<script>
import store from "@/store"; //取出存储器里面的lists
export default {
store,
data() {
return {
title: "",
content: "",
id: ""
};
},
methods: {
getFuck() {}
},
mounted() {
let x = this.$route.params.id;
let ans = store.getters.getTodoById(x);
console.log("ans" + ans);
this.title = ans.title1;
this.content = ans.content1;
this.id = ans.id;
}
};
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/animalcoder/Vue.git
git@gitee.com:animalcoder/Vue.git
animalcoder
Vue
Vue
master

搜索帮助