Написать стили с помощью js через refs в computed vue3

Как можно достучаться к последнему элементу через цикл чтобы с помощью $refs - написать такие стили

&:last-child {
    position: relative;
  }

  &:last-child::before {
    position: absolute;
    content: '';
    width: 1px;
    background-color: white;
    left: 23px;
    top: 0;
    bottom: 0;
  }

Через css нельзя - так как используется styled components в vue.js Тоесть я хочу все это сделать с помощью computed.


Ответы (1 шт):