"
:on="
() => {
- $router.push({
- name: ROUTE_NAMES.START_TRANSACTION,
- params: { hashId, chargingStationId, connectorId },
- query: {
- ...(evseId != null ? { evseId: String(evseId) } : {}),
- ...(ocppVersion != null ? { ocppVersion } : {}),
- },
- }).catch(() => undefined)
+ $router
+ .push({
+ name: ROUTE_NAMES.START_TRANSACTION,
+ params: { hashId, chargingStationId, connectorId },
+ query: {
+ ...(evseId != null ? { evseId: String(evseId) } : {}),
+ ...(ocppVersion != null ? { ocppVersion } : {}),
+ },
+ })
+ .catch(() => undefined)
}
"
:shared="true"
"
:on="
() => {
- $router.push({
- name: ROUTE_NAMES.SET_SUPERVISION_URL,
- params: {
- hashId: chargingStation.stationInfo.hashId,
- chargingStationId: chargingStation.stationInfo.chargingStationId,
- },
- }).catch(() => undefined)
+ $router
+ .push({
+ name: ROUTE_NAMES.SET_SUPERVISION_URL,
+ params: {
+ hashId: chargingStation.stationInfo.hashId,
+ chargingStationId: chargingStation.stationInfo.chargingStationId,
+ },
+ })
+ .catch(() => undefined)
}
"
:shared="true"