# Quick Start

  1. Install the npm package
npm i @tencent/press-ui
  1. Introduce and use normally in the page

For example the message-detail component:

<template>
   <PressMessageDetail />
</template>
import PressMessageDetail from '@tencent/press-ui/press-message-detail/press-message-detail.vue'

export default {
   components: {
     PressMessageDetail,
   }
}
  1. Configure vue.config.js

Note that you need to configure transpileDependencies in vue.config.js:

module.exports = {
   transpileDependencies: ['@tencent/press-ui'],
}
横屏
Last Updated: 4/15/2025, 11:37:26 AM