搜尋

首頁  >  問答  >  主體

在另一個元件中匯入元件及其屬性/方法

如果我有元件LogoutButton.vue

#
export default {
  data() 
  {
      return {

      }
      
  },
  methods: 
  { 
    Logout()
    {
        console.log("something")
    }
  }
}
</script>
<template>
    <button @click="Logout">Logout</button>
</template>

如何在其他元件中使用 LogoutButton 元件? 我的意思是如何在其他元件中導入該元件及其單擊方法?

P粉696605833P粉696605833487 天前515

全部回覆(1)我來回復

  • P粉668113768

    P粉6681137682023-09-13 10:30:32

    <script>
    import LogoutButton from './LogoutButton.vue'
    
    export default {
      components: {
        LogoutButton
      },
      data() 
      {
          return {
    
          }
          
      },
      methods: 
      { 
        // Your different methods
      }
    }
    </script>
    
    <template>
      <div>
        <!-- The template from LogoutButton component will display here -->
        <LogoutButton />
      </div>
    </template>
    

    回覆
    0
  • 取消回覆