Показать сообщение отдельно
  #3 (permalink)  
Старый 23.02.2020, 17:13
Аспирант
Отправить личное сообщение для misha.korolcov Посмотреть профиль Найти все сообщения от misha.korolcov
 
Регистрация: 05.09.2019
Сообщений: 84

я переписал всеоровно ошибка

error Unexpected newline between function and ( of function call no-unexpected-multiline

<template>
    <div id="app">
        <div class="get" v-for="get in gets" :key="get.id">
            <div>{{gets.result}}</div>

        </div>
    </div>
</template>

<script>


    export default {
        name: "app",
        data() {
            return {
                gets: []
            };
        },

        async mounted() {
            const res = await fetch
            ("https://api.unsplash.com/search/photos?query=london&client_id=7KOSBgto5zitVK6UfxHhkCTSLZ8zdBMrHUZZ-Ofedws");


            const gets = await res.json();
            this.gets = gets.results;
                
        }
    };
</script>

<style>
    #app {
        font-family: Avenir, Helvetica, Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
        color: #2c3e50;
        margin: 50px auto;
        width: 80vw;

    }
</style>
Ответить с цитированием