VueJS — creating a table, but being able to click a row to open that row's detail
问题 I'm new to VueJS, so this is probably a very simple problem, but here goes. I'm making a call to my API to get a set of records. I want to display those records in a simple table, but then I want to be able to click a link in the last cell of the row and be sent to a new URL -- a url for the detail of that object. Here's what I have so far: Vue Stuff: var vm = new Vue({ el: '#league-table', data: { leagues: [], apilink: '/api/leagues/', }, mounted: function() { this.getLeagues(); }, methods: