<div id="app">
  <ul>
    <li v-for="weekday in weekdays">
      {{ weekday }}
    </li>
  </ul>
  <ul>
    <li v-for="weekday in startWithSunday">
      {{ weekday }}
    </li>
  </ul>
</div>
html, body {
  display: grid;
  justify-content: center;
  align-content: center;
  height: 100%;
}

#app {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
const DateTime = luxon.DateTime
const Info = luxon.Info

const app = Vue.createApp({
  data: function () {
    return {
      weekdays: Info.weekdays()
    }
  },
  computed: {
    startWithSunday: function () {
      const weekdays = Info.weekdays()
      weekdays.unshift(weekdays.pop())
      return weekdays
    }
  }
})

const vm = app.mount('#app')

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdn.jsdelivr.net/npm/luxon@1.26.0/build/global/luxon.min.js
  2. https://unpkg.com/vue@next