# v-title **Repository Path**: suniv/v-title ## Basic Information - **Project Name**: v-title - **Description**: Auxiliary text display(like `el-tooltip`) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # v-title Auxiliary text display(like `el-tooltip`). https://yujinpan.github.io/v-title/ ## Usage ### Install ``` npm install --save v-title ``` ### Require element-ui If your project does not use element-ui, you need to introduce a separate element-ui package, like this: ```js import 'v-title/lib/element-ui'; ``` ### Global registration ```js import Vue from 'vue'; import VTitle from 'v-title'; Vue.use(VTitle); ``` ### In-component registration ```js import VTitle from 'v-title'; export default { components: { VTitle } }; ``` ### Complete example - light(modifier): use light effect, default use dark - overflow(modifier): use overflow mode - multiple(modifier): use multiple line mode(**need set element's `line-height > offsetHeight`**) - title-placement(attribute): tooltip placement ```xml ```