Skip to content

Lists

A simple reset for list-style-type to remove the default bullets.

Unordered List

vue
<template>
  <ul v-list v-pl="0">
    <li>Apples</li>
    <li>Oranges</li>
    <li>Banana</li>
    <li>Golf balls</li>
  </ul>
</template>
  • Apples
  • Oranges
  • Banana
  • Golf balls

Ordered List

vue
<template>
  <ol v-list v-pl="0">
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
  </ol>
</template>
  1. One
  2. Two
  3. Three
  4. Four

Reference