微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

将代码从一个组件合并到一个 vue-app 中的另一个组件?

如何解决将代码从一个组件合并到一个 vue-app 中的另一个组件?

编辑于 2021-01-16

各位程序员好!

我的 vue-wheater-app 有问题。我希望能够将 quotemachine 代码添加到我的 london.vue 代码中。但我不知道如何以一种好的方式做到这一点。 wheather-app 可以按照我自己的意愿运行。但我确实想在我的应用中添加一个随机的 qoute-machine。
以及如何将我的quotes.js 文件添加到我的代码中,以便它生成新的引号?

我的quote-app也可以自己工作。我只需要让天气应用程序和 qoute-machine 在同一页面上工作。我希望我的问题对你来说很清楚。否则只要问,我就会清除。

一如既往地感谢您的帮助!:)

这是我的wheater-app代码London.vue :

     <template>
          <div id="app">
            <main>
              <h1>London</h1>
        
              <div>{{ moment(date).format("YYYY-MM-DD") }}</div>
        
              <div>
                <div v-if="weatherInfo.length != 0"></div>
        
                <p>{{ weatherInfo.main.temp }} °C</p>
              </div>
    
              <div v-for="(weather,index) in weatherInfo.weather" v-bind:key="index">
                <img
                  v-bind:src="
                    'http://openweathermap.org/img/wn/' + weather.icon + '@2x.png'
                  "/>
              </div>

              <p> "{{ currentQuote }}" </p>
                <button @click="newQuote"> New Quote</button>
            </main>
          </div>
        </template>
        <script>


new Vue({
    el: '#app',data: {
        quotes,currentQuote: quotes[0]
    },methods: {
        newQuote: function () {
            const num = Math.floor(Math.random() * quotes.length)
            this.currentQuote = quotes[num]
        }
    }
}) 

        import axios from "axios";
        export default {
          name: "London",props: ["id"],data() {
            return {
              weatherInfo: [],};
          },mounted() {
            this.getWeather();
          },methods: {
            getWeather() {
              axios
                .get(
                  "https://api.openweathermap.org/data/2.5/weather?id=5695743&units=metric&appid=2acef1cd6cef64a2b6d2e405b5067512"
                )
                .then((res) => (this.weatherInfo = res.data));
            },},};
        </script>
        <style>
        </style>

这是我的 app.vue

 <template>
        <div id="app">
          <router-view> 
            </router-view>
            </div>
    </template>
    <script>
    </script>
    <style>
    </style>

这是我的 main.js

 import Vue from 'vue'
    import VueRouter from 'vue-router';
    import App from './App.vue'
    import moment from 'moment'
    import London from './components/London.vue'
    Vue.prototype.moment = moment
    Vue.use(VueRouter)
    const routes = [{
      path: '/London',name: 'London',component: London
    },{ 
    path: '/',component:London}]
    const router = new VueRouter({routes: routes})
    Vue.config.productionTip = false
    new Vue({
    
      router: router,render: h => h(App),}).$mount('#app')

这是我的quotes.js

var quotes = [
    "There's nothing wrong with having a tree as a friend.","The secret to doing anything is believing that you can do it. Anything that you believe you can do strong enough,you can do. Anything. As long as you believe.","Anytime you learn,you gain.","It’s life. It’s interesting. It’s fun."
    ];

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?