15 lines
639 B
HTML
15 lines
639 B
HTML
|
|
<template>
|
|||
|
|
<div class="toolbar">
|
|||
|
|
<button onclick="app.bold()">📝 Bold</button>
|
|||
|
|
<button onclick="app.addRow()">➕ Add Row</button>
|
|||
|
|
<button onclick="app.addColumn()">➕ Add Column</button>
|
|||
|
|
<button onclick="app.deleteRow()">➖ Delete Row</button>
|
|||
|
|
<button onclick="app.deleteColumn()">➖ Delete Column</button>
|
|||
|
|
<button onclick="app.sort()">🔽 Sort A-Z</button>
|
|||
|
|
<button onclick="app.sum()">Σ Sum</button>
|
|||
|
|
<button onclick="app.average()">📊 Average</button>
|
|||
|
|
<button onclick="app.clearCell()">🗑️ Clear</button>
|
|||
|
|
<button onclick="app.exportData()">💾 Export</button>
|
|||
|
|
</div>
|
|||
|
|
</template>
|