text-digits.html 440 B

12345678910111213
  1. <div id="typography" class="relative">
  2. <div id="font">
  3. <ul class="select-list overflow-y-scroll" style="max-height:315px;width:240px">
  4. <li v-bind:class="{checked:active_font==font}"
  5. v-for="font in fonts"
  6. v-on:mousedown="apply_font($event,font)"
  7. v-on:touchstart="apply_font($event,font)">
  8. <span v-bind:style="{'font-family': font}">{{font}}</span>
  9. </li>
  10. </ul>
  11. </div>
  12. </div>