2
私はvue-tables-2を実装するvueコンポーネントを開発中です。私は作業例hereを持っています。私がやろうとしているのは、editセルだけではなく、行全体にedit href urlをリンクすることです。 vanilla javascriptを使用して、mounted
フック(this.$el
)を使用して仮想ドームにアクセスし、hrefの行をラップして編集列を隠そうとしましたが、ハックのような感じです。どのようにこれを達成するための任意の提案?テーブル内の行をURLにリンクする
<template>
<div class="col-md-8 col-md-offset-2">
<div id="people">
<v-client-table :data="tableData" :columns="columns">
<template slot="edit" slot-scope="props">
<div>
<a class="fa fa-edit" :href="edit(props.row.id)">thing</a>
</div>
</template>
</v-client-table>
</div>
</div>
</template>
<script>
import {ServerTable, ClientTable, Event} from 'vue-tables-2';
import Vue from 'vue';
import axios from 'axios';
export default {
methods: {
edit: function(id){
return "edit/hello-" + id
}
},
data() {
return {
columns: ['edit', 'id','name','age'],
tableData: [
{id:1, name:"John",age:"20"},
{id:2, name:"Jane",age:"24"},
{id:3, name:"Susan",age:"16"},
{id:4, name:"Chris",age:"55"},
{id:5, name:"Dan",age:"40"}
]
};
}
}
</script>
これはまさに正しい動作です。私はそれが複雑なことを知っていた。私は本当に助けに感謝します! – AnchovyLegend
ありがとう、ちょうど私が必要なもの。私はこれを使った。$ router.push( '/ details/$ {event.row.id}'); window.locationではなく、あなたが記述した方法で正確に動作します:) –