X(Twitter) Zenn GitHub RSS 共有

バーコード

作成日時:2025-11-03
更新日時:2025-11-03

ブラウザでのバーコード生成

JSBarcodeを使う。
GitHub - lindell/JsBarcode: Barcode generation library written in JavaScript that works in both the browser and on Node.js

vue-barcodeは動きが活発ではないからやめた。

<template>
  <svg ref="barcode"></svg>
</template>

<script>
import JsBarcode from 'jsbarcode';

export default {
  mounted() {
    JsBarcode(this.$refs.barcode, "123456789012", {
      format: "CODE128",
      width: 2,
      height: 100
    });
  }
}
</script>