File tree Expand file tree Collapse file tree 4 files changed +24
-5
lines changed
Expand file tree Collapse file tree 4 files changed +24
-5
lines changed Original file line number Diff line number Diff line change 1+ <template >
2+ <s-scroll-view >
3+ <div class =" plot-data add-data" >
4+ <s-icon name =" add" />
5+ {{ t("buttons.add") }}
6+ <s-ripple attached ></s-ripple >
7+ </div >
8+ <s-empty >{{ t("title.inDev") }}</s-empty >
9+ </s-scroll-view >
10+ </template >
11+
12+ <script setup lang="ts">
13+ import { useI18n } from " vue-i18n" ;
14+ const { t } = useI18n ();
15+ </script >
Original file line number Diff line number Diff line change @@ -21,7 +21,9 @@ const { t } = useI18n();
2121
2222import ImportBtn from " ./import.vue" ;
2323import DatumList from " ./datumList.vue" ;
24+ import AnnotaionList from " ./annotaions.vue" ;
2425import GraphOptions from " ./options.vue" ;
26+
2527import OutputDrawer from " ./output.vue" ;
2628
2729import { computed , ref , watch } from " vue" ;
@@ -30,6 +32,7 @@ const currentTabIndex = computed(() => Number(currentTab.value));
3032const transitionName = ref (" " );
3133const tabs = [
3234 { caption: " title.functions" , component: DatumList },
35+ { caption: " title.annotaions" , component: AnnotaionList },
3336 { caption: " title.graphOptions" , component: GraphOptions },
3437];
3538watch (currentTabIndex , (newVal , oldVal ) => {
Original file line number Diff line number Diff line change 11<template >
22 <s-scroll-view >
33 <div id =" options" >
4-
54 <s-divider >{{ t("title.global") }}</s-divider >
65
76 <div class =" option" >
5655
5756<script setup lang="ts">
5857import { useI18n } from " vue-i18n" ;
59- const { t , locale} = useI18n ();
58+ const { t, locale } = useI18n ();
6059 </script >
6160
6261<style >
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default {
5353 } ,
5454 inputs : {
5555 fnType : "图形类型" ,
56- graphType : "渲染方式 " ,
56+ graphType : "绘制方式 " ,
5757 fn : "函数" ,
5858 range : "范围" ,
5959 color : "颜色" ,
@@ -79,12 +79,13 @@ export default {
7979 deleteSuccess : "已删除" ,
8080 moreOptions : "更多选项" ,
8181 copyFail : "复制失败" ,
82- functions : "函数列表 " ,
83- graphOptions : "图形选项 " ,
82+ functions : "图线列表 " ,
83+ graphOptions : "绘制选项 " ,
8484 inDev : "开发中" ,
8585 global : "全局" ,
8686 horizontal : "横轴" ,
8787 vertical : "纵轴" ,
88+ annotaions : "标线列表" ,
8889 } ,
8990 } ,
9091 "en-US" : {
@@ -154,6 +155,7 @@ export default {
154155 global : "Global" ,
155156 horizontal : "Horizontal Axis" ,
156157 vertical : "Vertical Axis" ,
158+ annotaions : "Annotation list" ,
157159 } ,
158160 } ,
159161 } ,
You can’t perform that action at this time.
0 commit comments