generated from Seekra/repository-template
style: remove unnecessary function whitespace
Remove the unnecessary whitespace between the function name or the 'function' keyword and the opening parenthesis.
This commit is contained in:
@@ -17,10 +17,10 @@ limitations under the License.
|
||||
import { getSettingsPagePathSegments } from '../utils/settingsPage';
|
||||
import { useRouter } from 'vue-router';
|
||||
|
||||
export const useSettingsPage = function useSettingsPage () {
|
||||
export const useSettingsPage = function useSettingsPage() {
|
||||
const router = useRouter();
|
||||
|
||||
const goToSettingsPage = function goToSettingsPage (pagePath) {
|
||||
const goToSettingsPage = function goToSettingsPage(pagePath) {
|
||||
return router.push({
|
||||
name: 'settings',
|
||||
params: {
|
||||
|
||||
Reference in New Issue
Block a user