stash
This commit is contained in:
parent
9c3fedc5c3
commit
13430c0f04
4 changed files with 11 additions and 4 deletions
|
@ -1,7 +1,12 @@
|
|||
<template>
|
||||
<div>
|
||||
<h3>Shipping Codes</h3>
|
||||
<Table
|
||||
<ul>
|
||||
<li v-for="code in shippingCodes" :key="code.code">
|
||||
{{ code.type }} - {{ code.code }}
|
||||
</li>
|
||||
</ul>
|
||||
<!--Table
|
||||
:columns="['type', 'code']"
|
||||
:items="shippingCodes"
|
||||
:keyName="'code'"
|
||||
|
@ -18,7 +23,7 @@
|
|||
</button>
|
||||
</div>
|
||||
</template>
|
||||
</Table>
|
||||
</Table-->
|
||||
<div class="mt-3">
|
||||
<textarea class="form-control mb-3" rows="5" placeholder="Shipping Code List" v-model="bulk_codes" v-if="bulk"></textarea>
|
||||
<div class="input-group">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue