/** * Composition API: useNorm * 在 Vue 3 Composition API 中使用 norm * * @example * import { useNorm } from '@deppon/deppon-norm/vue' * * export default { * setup() { * const norm = useNorm() * * const handleCommit = () => { * norm.commit('commit message') * } * * return { handleCommit } * } * } */ export function useNorm(): any;