|
@@ -127,10 +127,6 @@ Set custom icons through icon and rotate to set the rotation angle of icons
|
|
|
import { reactive, ref, toRefs } from 'vue';
|
|
import { reactive, ref, toRefs } from 'vue';
|
|
|
import { Notice, Follow } from '@nutui/icons-vue';
|
|
import { Notice, Follow } from '@nutui/icons-vue';
|
|
|
export default {
|
|
export default {
|
|
|
- components: {
|
|
|
|
|
- Notice,
|
|
|
|
|
- Follow
|
|
|
|
|
- },
|
|
|
|
|
setup() {
|
|
setup() {
|
|
|
const activeName = ref(1);
|
|
const activeName = ref(1);
|
|
|
const title = reactive({
|
|
const title = reactive({
|
|
@@ -140,6 +136,8 @@ export default {
|
|
|
return {
|
|
return {
|
|
|
activeName,
|
|
activeName,
|
|
|
...toRefs(title),
|
|
...toRefs(title),
|
|
|
|
|
+ Notice,
|
|
|
|
|
+ Follow
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|