```html
<div class="demo-block" id="spinner-demo1">
  <lx-group>
    <lx-cell
      v-for="(type, index) in types"
      :key="type"
      :title="type"
      :inline-desc="index === 3 ? 'size=40px' : ''"
    >
      <lx-spinner
        :type="type"
        :size="index === 3 ? '40px' : ''"
      />
    </lx-cell>
  </lx-group>
</div>


<script>
// Spinner.md
new Vue({
  el: '#spinner-demo1',
  
  data: {
    types: ['android', 'ios', 'ios-small', 'bubbles', 'circles', 'crescent', 'dots', 'lines', 'ripple', 'spiral']
  }
})
</script>
```