Hier ist ein Minimalbeispiel. Gern würde ich den Winkel wie im Bild im Anhang kennzeichnen.
\documentclass[12pt,ngerman]{scrartcl}
\usepackage[]{babel}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
%
%
\begin{document}
%
%
\begin{figure}[h!]
\centering
\begin{tikzpicture}
\begin{axis}[
axis equal,
width=0.75\textwidth,
axis x line=center,
axis y line=center,
xlabel={$x$},
ylabel={$y$},
xmin=-5, xmax=5,
ymin=-5, ymax=5,
xtick={-5,...,5},
ytick={-5,...,5},
grid=both,
]
\drawvery thick,->--(1,4) node[near end, right] {$\vec{a}$};
\drawvery thick,->--(2,-4) node[near end, right] {$\vec{b}$};
%\draw (0,0) arc (296:75:3mm);
%\draw(30:0.5cm) node {$\alpha$};
\end{axis}
\end{tikzpicture}
\end{figure}
%
%
\end{document}

