/// // Print all the commands. import { commands } from "@/js/commands" export default function () { return { html: "
" + Object.keys(commands).map(cmd => `${cmd}`).join("") + "
" } }