1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| import { taiwanCities } from '~/shared/const/taiwan-cities';
|
| import Vue from 'vue'
|
| Vue.filter('toServeArea', (value: string): string => {
|
| if (!value || typeof value !== 'string') {
| return '--';
| }
|
| const serveAreaLength = value.split('、').length;
|
| return serveAreaLength === taiwanCities.length
| ? '全台'
| : value;
| })
|
|