dotfiles/vueenv.sh
Baptiste Wojtkowski c5662e93f3 initial commit
2024-01-30 12:01:12 +01:00

16 lines
277 B
Bash

#! /usr/bin/env sh
#
# Contain helpers for vue3 development
#
vue_env_path=$personnal_workspace/vueenv
function create_component () {
ls $personnal_workspace
ls $vue_env_path
cat $vue_env_path/component.js
cp $vue_env_path/component.js $1
}
alias cc="create_component"