Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 311 Bytes

useTitle.md

File metadata and controls

20 lines (16 loc) · 311 Bytes

useTitle


Composition Function that sets title of the page

Usage


<script>
    import { useTitle } from 'composition-fn'
    export default {
        setup () {
            // 返回值为 setTitle 函数可用来更新 title
            useTitle('title')
        }
    }
<script>