aboutsummaryrefslogtreecommitdiff
path: root/src/components/list/list.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/list/list.vue')
-rw-r--r--src/components/list/list.vue8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/list/list.vue b/src/components/list/list.vue
index a6223cce..a3562c5d 100644
--- a/src/components/list/list.vue
+++ b/src/components/list/list.vue
@@ -1,9 +1,13 @@
<template>
- <div class="list">
+ <div
+ class="list"
+ role="list"
+ >
<div
v-for="item in items"
:key="getKey(item)"
class="list-item"
+ role="listitem"
>
<slot
name="item"
@@ -35,7 +39,7 @@ export default {
</script>
<style lang="scss">
-@import '../../_variables.scss';
+@import "../../variables";
.list {
&-item:not(:last-child) {