12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div class="accounts-list">
- <div class="account" v-for="(account, accountIndex) in accounts">
- Account
- <router-link
- :to="`edit/${account._id}`"
- >
- Edit account
- </router-link>
- </div>
- </div>
- </template>
- <script>
- export default {
- data: function() {
- return {
-
- };
- },
- methods: {
-
- },
- props: {
- accounts: Array
- },
- mounted() {
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss" scoped>
- </style>
|