refactor: move ruby to custom vue component

(cherry picked from commit ea99d38a920850b0d4dbaa7352f57ebf13bbbee6)
This commit is contained in:
Jixun Wu 2021-12-22 13:39:47 +00:00 committed by MengYX
parent 3567e7e625
commit c1aba5a10f
No known key found for this signature in database
GPG Key ID: E63F9C7303E8F604
2 changed files with 23 additions and 7 deletions

View File

@ -32,12 +32,7 @@ form >>> input {
<label>
<span>
JOOX Music ·
<ruby>
设备唯一识别码
<rp>(</rp>
<rt>Device Unique Identifier</rt>
<rp>)</rp></ruby
>
<Ruby caption="Unique Device Identifier">设备唯一识别码</Ruby>
</span>
<el-form-item prop="jooxUUID">
<el-input type="text" v-model="form.jooxUUID" clearable maxlength="32" show-word-limit> </el-input>
@ -62,6 +57,7 @@ form >>> input {
<script>
import { storage } from '@/utils/storage';
import Ruby from './Ruby';
// FIXME:
function validateJooxUUID(rule, value, callback) {
@ -77,7 +73,9 @@ const rules = {
};
export default {
components: {},
components: {
Ruby,
},
props: {
show: { type: Boolean, required: true },
},

18
src/component/Ruby.vue Normal file
View File

@ -0,0 +1,18 @@
<template>
<ruby :title="caption">
<slot></slot>
<rp></rp>
<rt v-text="caption"></rt>
<rp></rp>
</ruby>
</template>
<script>
export default {
name: 'Ruby',
props: {
caption: { type: String, required: true },
},
};
</script>