Newer
Older
make_invoice / app / src / components / th-items.js
import Vue from '../../../node_modules/vue/dist/vue.js';

Vue.component('th-items', {
    template: `
    <tr>
        <th><abbr title="Position">Pos</abbr></th>
        <th>勤務地</th>
        <th>スタッフ</th>
        <th>お客様</th>
        <th>注文額</th>
        <th>下限(h)</th>
        <th>上限(h)</th>
        <th>時間の扱い</th>
        <th>勤務時間(h)</th>
        <th>控除コスト</th>
        <th>控除時間(h)</th>
        <th>控除額</th>
        <th>超過コスト</th>
        <th>超過時間(h)</th>
        <th>超過額</th>
        <th>請求金額</th>
    </tr>
    `
});