1. data() {
    2. return {
    3. arr: ["html", "css", "javascript"]
    4. };
    5. },
    6. <p v-for="item of arr" :key="item">{{item}}</p>